diff --git a/L2J_DataPack_BETA/dist/game/data/ItemAuctions.xml b/L2J_DataPack_BETA/dist/game/data/ItemAuctions.xml
index ee99662e88cfe0c0255acd6e81b9cf5e29d02da6..0a0d969d3f6a058d43fca60e753913ddfec1f4f6 100644
--- a/L2J_DataPack_BETA/dist/game/data/ItemAuctions.xml
+++ b/L2J_DataPack_BETA/dist/game/data/ItemAuctions.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="ItemAuctions.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/ItemAuctions.xsd">
 	<!-- Samples -->
 	<!-- <instance id="NPC ID of the auctioneer" day_of_week="1 - Monday, 7 - Sunday" hour_of_day="0-23" minute_of_hour="0-59"> -->
 	<!-- <item auctionItemId="1" itemId="9901" itemCount="1" auctionInitBid="100000" auctionLenght="300 (in minutes)"> -->
diff --git a/L2J_DataPack_BETA/dist/game/data/MerchantPriceConfig.xml b/L2J_DataPack_BETA/dist/game/data/MerchantPriceConfig.xml
index 320aa0276e0d8f8b229b71a298b65afb9ba29be7..dc0a27884a7a0ebe4fc6844e4e7281c48dd4e37c 100644
--- a/L2J_DataPack_BETA/dist/game/data/MerchantPriceConfig.xml
+++ b/L2J_DataPack_BETA/dist/game/data/MerchantPriceConfig.xml
@@ -8,7 +8,7 @@
 <!-- zoneId -> Attaches a given Town Zone to this priceConfig for convenience. -->
 <!-- Merchant NPCs that dont explicit define an priceConfig will check if they are inside of the zone of an priceConfig, if yes that priceConfig is used for that npc. Can be ommited, then no NPC will be added based on zone (ie priceConfig direct assigned to NPCs through config or when used as the default priceConfig). -->
 <!-- Merchant Price Formula price = baseItemPrice * (1 + baseTax/100 + castleTax/100) -->
-<merchantPriceConfig defaultPriceConfig="18" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="MerchantPriceConfig.xsd">
+<merchantPriceConfig defaultPriceConfig="18" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/MerchantPriceConfig.xsd">
 	<priceConfig id="0" name="Giran Town" baseTax="10" castleId="3" zoneId="11020" />
 	<priceConfig id="1" name="DE Village" baseTax="15" castleId="4" zoneId="11021" />
 	<priceConfig id="2" name="Talking Island" baseTax="15" castleId="1" zoneId="11022" />
diff --git a/L2J_DataPack_BETA/dist/game/data/Routes.xml b/L2J_DataPack_BETA/dist/game/data/Routes.xml
index 9fb58a53ef1288784c718b332741a27d1fc08de3..f7b97bc47c5bf17697c72cceb09a08dd2bdd1724 100644
--- a/L2J_DataPack_BETA/dist/game/data/Routes.xml
+++ b/L2J_DataPack_BETA/dist/game/data/Routes.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<routes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="Routes.xsd">
+<routes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/Routes.xsd">
 	<!-- Just test route - Giran town square -->
 	<route id="1" repeat="true" repeatStyle="cycle">
 		<stat name="debug" val="false" />
diff --git a/L2J_DataPack_BETA/dist/game/data/WalkerRoutes.xml b/L2J_DataPack_BETA/dist/game/data/WalkerRoutes.xml
index 7c13d4b33f61b25e2fcd955e04ff15014042c044..a8b2cde1f0a279aac366563b211fe99912e0dd03 100644
--- a/L2J_DataPack_BETA/dist/game/data/WalkerRoutes.xml
+++ b/L2J_DataPack_BETA/dist/game/data/WalkerRoutes.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<routes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="WalkerRoutes.xsd">
+<routes xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/WalkerRoutes.xsd">
 	<walker npcId="31361">
 		<route id="0" X="23436" Y="11164" Z="-3720" delay="0" run="true" />
 		<route id="1" X="20256" Y="11104" Z="-3720" delay="0" run="true" />
diff --git a/L2J_DataPack_BETA/dist/game/data/cursedWeapons.xml b/L2J_DataPack_BETA/dist/game/data/cursedWeapons.xml
index b5f52bce5c73769f909d2583717c97759b6e3ad2..0751e2435b791287a5140104be2b4c05230b1233 100644
--- a/L2J_DataPack_BETA/dist/game/data/cursedWeapons.xml
+++ b/L2J_DataPack_BETA/dist/game/data/cursedWeapons.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="cursedWeapons.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/cursedWeapons.xsd">
 	<item id="8190" name="Demonic Sword Zariche" skillId="3603">
 		<disapearChance val="50" /> <!-- in % -->
 		<dropRate val="1" /> <!-- 100000 for 100% -->
diff --git a/L2J_DataPack_BETA/dist/game/data/dimensionalRift.xml b/L2J_DataPack_BETA/dist/game/data/dimensionalRift.xml
index f8bfc3051111d0fb337d7ecc7d40ba97e70152b4..e0a233cb311364d3c4f1e39c0cf34401e44d6393 100644
--- a/L2J_DataPack_BETA/dist/game/data/dimensionalRift.xml
+++ b/L2J_DataPack_BETA/dist/game/data/dimensionalRift.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<rift xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="dimensionalRift.xsd">
+<rift xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/dimensionalRift.xsd">
 	<!-- ########### RECRUITS AREA ########### -->
 	<area type="1">
 		<room id="1">
diff --git a/L2J_DataPack_BETA/dist/game/data/enchantData.xml b/L2J_DataPack_BETA/dist/game/data/enchantData.xml
index f6ba9d1311ee522f4c3ca9639ac46c61bf764b9c..384be68d626357f9ec0192db6dede6c07636bdc9 100644
--- a/L2J_DataPack_BETA/dist/game/data/enchantData.xml
+++ b/L2J_DataPack_BETA/dist/game/data/enchantData.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="enchantData.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/enchantData.xsd">
 	<!-- Scrolls: Enchant Weapon -->
 	<enchant id="729" targetGrade="a" />
 	<enchant id="947" targetGrade="b" />
diff --git a/L2J_DataPack_BETA/dist/game/data/enchantHPBonus.xml b/L2J_DataPack_BETA/dist/game/data/enchantHPBonus.xml
index bf633760de4a2dbddcb0246bba5844b7c456371b..194ac0f6f569c0d449057e420b2fce3b5cb90e8c 100644
--- a/L2J_DataPack_BETA/dist/game/data/enchantHPBonus.xml
+++ b/L2J_DataPack_BETA/dist/game/data/enchantHPBonus.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="enchantHPBonus.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/enchantHPBonus.xsd">
 	<enchantHP grade="0" values="0, 0, 0, 4, 8, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16, 16" />
 	<enchantHP grade="1" values="0, 0, 0, 9, 26, 52, 86, 130, 181, 242, 311, 389" />
 	<enchantHP grade="2" values="0, 0, 0, 12, 36, 71, 118, 178, 249, 332, 426, 533" />
diff --git a/L2J_DataPack_BETA/dist/game/data/hellboundTrustPoints.xml b/L2J_DataPack_BETA/dist/game/data/hellboundTrustPoints.xml
index 63bc2d1858cd184ef4ad6e1304a43d47a5c6ff4d..d5f222f15ee417e26466ad3f23f488b1ff3767d7 100644
--- a/L2J_DataPack_BETA/dist/game/data/hellboundTrustPoints.xml
+++ b/L2J_DataPack_BETA/dist/game/data/hellboundTrustPoints.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="hellboundTrustPoints.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/hellboundTrustPoints.xsd">
 	<npc id="18463" points="5" minHellboundLvl="2" maxHellboundLvl="2" /> <!-- Remnant Diabolist -->
 	<npc id="18464" points="5" minHellboundLvl="2" maxHellboundLvl="2" /> <!-- Remnant Diviner -->
 	<npc id="18465" points="10000" minHellboundLvl="4" maxHellboundLvl="4" /> <!-- Derek -->
diff --git a/L2J_DataPack_BETA/dist/game/data/instancenames.xml b/L2J_DataPack_BETA/dist/game/data/instancenames.xml
index 74d6287602903cca2361490d9421e91754c3c433..ca1d5aa27269330b4c4b8d2b8d6ca5788e5af841 100644
--- a/L2J_DataPack_BETA/dist/game/data/instancenames.xml
+++ b/L2J_DataPack_BETA/dist/game/data/instancenames.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<instances_list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="instancenames.xsd">
+<instances_list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/instancenames.xsd">
 	<instance id="1" name="Party Duel" />
 	<instance id="2" name="Urban Area" />
 	<instance id="3" name="Tower of Infinitum Demon Prince" />
diff --git a/L2J_DataPack_BETA/dist/game/data/instances/CrystalCaverns.xml b/L2J_DataPack_BETA/dist/game/data/instances/CrystalCaverns.xml
index ffc3f5525fd71f024f3fe526f24ec14fb00070dc..24533659f08332050573579d0d91aaf11f9a5fa5 100644
--- a/L2J_DataPack_BETA/dist/game/data/instances/CrystalCaverns.xml
+++ b/L2J_DataPack_BETA/dist/game/data/instances/CrystalCaverns.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<instance name="CrystalCaverns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="instance.xsd">
+<instance name="CrystalCaverns" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/instance.xsd">
 	<activityTime val="90" />
 	<allowSummon val="false" />
 	<emptyDestroyTime val="1200" />
diff --git a/L2J_DataPack_BETA/dist/game/data/instances/DarkCloudMansion.xml b/L2J_DataPack_BETA/dist/game/data/instances/DarkCloudMansion.xml
index af729a5c8839648283525c8d8897123b465af261..d3dcd09512bf60ec1b33db28cbcbfd9917ad1e16 100644
--- a/L2J_DataPack_BETA/dist/game/data/instances/DarkCloudMansion.xml
+++ b/L2J_DataPack_BETA/dist/game/data/instances/DarkCloudMansion.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<instance name="Dark Cloud Mansion" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="instance.xsd">
+<instance name="Dark Cloud Mansion" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/instance.xsd">
 	<activityTime val="30" />
 	<allowSummon val="false" />
 	<emptyDestroyTime val="30" />
diff --git a/L2J_DataPack_BETA/dist/game/data/instances/DemonPrince.xml b/L2J_DataPack_BETA/dist/game/data/instances/DemonPrince.xml
index 01429994035238ea3a6df318b4158caa22d46938..2f39e74c413a6d7fa8b30c71f802b42a7914bc64 100644
--- a/L2J_DataPack_BETA/dist/game/data/instances/DemonPrince.xml
+++ b/L2J_DataPack_BETA/dist/game/data/instances/DemonPrince.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<instance name="Demon Prince" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="instance.xsd">
+<instance name="Demon Prince" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/instance.xsd">
 	<activityTime val="30" />
 	<allowSummon val="false" />
 	<emptyDestroyTime val="600" />
diff --git a/L2J_DataPack_BETA/dist/game/data/instances/FinalEmperialTomb.xml b/L2J_DataPack_BETA/dist/game/data/instances/FinalEmperialTomb.xml
index d99a491a1ab69630303b8ff26b571da6f93df298..1b4de4bdc60fa5cae20f79cf3e2ac475dbdeccb5 100644
--- a/L2J_DataPack_BETA/dist/game/data/instances/FinalEmperialTomb.xml
+++ b/L2J_DataPack_BETA/dist/game/data/instances/FinalEmperialTomb.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<instance name="Final Emperial Tomb" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="instance.xsd">
+<instance name="Final Emperial Tomb" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/instance.xsd">
 	<activityTime val="120" />
 	<allowSummon val="false" />
 	<emptyDestroyTime val="1800" />
diff --git a/L2J_DataPack_BETA/dist/game/data/instances/HallOfSuffering.xml b/L2J_DataPack_BETA/dist/game/data/instances/HallOfSuffering.xml
index 68db55da7f4ae4837c3aa39ecc1ab0e307addaa1..928b4a323eb690f53a6dc70e107e8ac5223f8e68 100644
--- a/L2J_DataPack_BETA/dist/game/data/instances/HallOfSuffering.xml
+++ b/L2J_DataPack_BETA/dist/game/data/instances/HallOfSuffering.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<instance name="Hall Of Suffering" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="instance.xsd">
+<instance name="Hall Of Suffering" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/instance.xsd">
 	<activityTime val="60" />
 	<allowSummon val="false" />
 	<emptyDestroyTime val="600" />
diff --git a/L2J_DataPack_BETA/dist/game/data/instances/HellboundTown.xml b/L2J_DataPack_BETA/dist/game/data/instances/HellboundTown.xml
index 0185ef43d6781f1ca018bae2cbbe4e3f840bb411..efdff2f9107c1d24474093c16239a8597e8a0fbb 100644
--- a/L2J_DataPack_BETA/dist/game/data/instances/HellboundTown.xml
+++ b/L2J_DataPack_BETA/dist/game/data/instances/HellboundTown.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<instance name="HellboundTown" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="instance.xsd">
+<instance name="HellboundTown" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/instance.xsd">
 	<activityTime val="30" />
 	<allowSummon val="false" />
 	<emptyDestroyTime val="180" />
diff --git a/L2J_DataPack_BETA/dist/game/data/instances/NornilsGarden.xml b/L2J_DataPack_BETA/dist/game/data/instances/NornilsGarden.xml
index dd930e36a21d0dc932c6ff449109b8cbdeba4741..002a1b6acfa115d281fa89475e778809ed108f33 100644
--- a/L2J_DataPack_BETA/dist/game/data/instances/NornilsGarden.xml
+++ b/L2J_DataPack_BETA/dist/game/data/instances/NornilsGarden.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<instance name="Nornils Garden" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="instance.xsd">
+<instance name="Nornils Garden" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/instance.xsd">
 	<activityTime val="60" />
 	<allowSummon val="false" />
 	<emptyDestroyTime val="3000" />
diff --git a/L2J_DataPack_BETA/dist/game/data/instances/OlympiadGrassyArena.xml b/L2J_DataPack_BETA/dist/game/data/instances/OlympiadGrassyArena.xml
index 7f88d92eeb0171a4e73871e3c2ead7c70585d7f0..a97ac89b4041097bcd7dea22e6bcfd3be8c0b64a 100644
--- a/L2J_DataPack_BETA/dist/game/data/instances/OlympiadGrassyArena.xml
+++ b/L2J_DataPack_BETA/dist/game/data/instances/OlympiadGrassyArena.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<instance name="Grassy Arena" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="instance.xsd">
+<instance name="Grassy Arena" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/instance.xsd">
 	<doorlist>
 		<door doorId="17100001" />
 		<door doorId="17100002" />
diff --git a/L2J_DataPack_BETA/dist/game/data/instances/OlympiadHerossVestigesArena.xml b/L2J_DataPack_BETA/dist/game/data/instances/OlympiadHerossVestigesArena.xml
index 2667b5705c079a34cb341e638407d927818102d7..e00f9af84872d903dd222a9d2bc477212e7e00cb 100644
--- a/L2J_DataPack_BETA/dist/game/data/instances/OlympiadHerossVestigesArena.xml
+++ b/L2J_DataPack_BETA/dist/game/data/instances/OlympiadHerossVestigesArena.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<instance name="Heros's Vestiges Arena" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="instance.xsd">
+<instance name="Heros's Vestiges Arena" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/instance.xsd">
 	<doorlist>
 		<door doorId="17100201" />
 		<door doorId="17100202" />
diff --git a/L2J_DataPack_BETA/dist/game/data/instances/OlympiadOrbisArena.xml b/L2J_DataPack_BETA/dist/game/data/instances/OlympiadOrbisArena.xml
index a4e578bc942758d054bce840ea32b6d4e8907db7..b5c586b8ec224f14bbd375946aca54c39f8046e5 100644
--- a/L2J_DataPack_BETA/dist/game/data/instances/OlympiadOrbisArena.xml
+++ b/L2J_DataPack_BETA/dist/game/data/instances/OlympiadOrbisArena.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<instance name="Orbis Arena" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="instance.xsd">
+<instance name="Orbis Arena" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/instance.xsd">
 	<doorlist>
 		<door doorId="17100301" />
 		<door doorId="17100302" />
diff --git a/L2J_DataPack_BETA/dist/game/data/instances/OlympiadThreeBridgesArena.xml b/L2J_DataPack_BETA/dist/game/data/instances/OlympiadThreeBridgesArena.xml
index 734202c5cbd66574d7c93c7416e023fd544c9f6a..4d8b02bde23fe8788aea81a2cc18ab4f956939d8 100644
--- a/L2J_DataPack_BETA/dist/game/data/instances/OlympiadThreeBridgesArena.xml
+++ b/L2J_DataPack_BETA/dist/game/data/instances/OlympiadThreeBridgesArena.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<instance name="Three Bridges Arena" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="instance.xsd">
+<instance name="Three Bridges Arena" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/instance.xsd">
 	<doorlist>
 		<door doorId="17100101" />
 		<door doorId="17100102" />
diff --git a/L2J_DataPack_BETA/dist/game/data/instances/PailakaDevilsLegacy.xml b/L2J_DataPack_BETA/dist/game/data/instances/PailakaDevilsLegacy.xml
index 7e0f7db80033a73b4981f691686e5fd1ce3f58f8..526525cd814f943420da24bde760847ddeb5ada8 100644
--- a/L2J_DataPack_BETA/dist/game/data/instances/PailakaDevilsLegacy.xml
+++ b/L2J_DataPack_BETA/dist/game/data/instances/PailakaDevilsLegacy.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<instance name="Pailaka (Devil's Isle)" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="instance.xsd">
+<instance name="Pailaka (Devil's Isle)" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/instance.xsd">
 	<activityTime val="60" />
 	<allowSummon val="false" />
 	<emptyDestroyTime val="3000" />
diff --git a/L2J_DataPack_BETA/dist/game/data/instances/PailakaSongOfIceAndFire.xml b/L2J_DataPack_BETA/dist/game/data/instances/PailakaSongOfIceAndFire.xml
index 3d33025965c0895b83b8498ced10978477f87b37..31cc44bc0554bf47e99d111e502a5260e4597f9c 100644
--- a/L2J_DataPack_BETA/dist/game/data/instances/PailakaSongOfIceAndFire.xml
+++ b/L2J_DataPack_BETA/dist/game/data/instances/PailakaSongOfIceAndFire.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<instance name="Pailaka (Forgotten Temple)" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="instance.xsd">
+<instance name="Pailaka (Forgotten Temple)" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/instance.xsd">
 	<activityTime val="60" />
 	<allowSummon val="false" />
 	<emptyDestroyTime val="3000" />
diff --git a/L2J_DataPack_BETA/dist/game/data/instances/Ranku.xml b/L2J_DataPack_BETA/dist/game/data/instances/Ranku.xml
index 850fce3819dc49cef7b390720fd576afdc41e61a..d4a62d647d339efabc203e54a10770c5a13eaa33 100644
--- a/L2J_DataPack_BETA/dist/game/data/instances/Ranku.xml
+++ b/L2J_DataPack_BETA/dist/game/data/instances/Ranku.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<instance name="Ranku" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="instance.xsd">
+<instance name="Ranku" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/instance.xsd">
 	<activityTime val="30" />
 	<allowSummon val="false" />
 	<emptyDestroyTime val="600" />
diff --git a/L2J_DataPack_BETA/dist/game/data/instances/SecretArea.xml b/L2J_DataPack_BETA/dist/game/data/instances/SecretArea.xml
index c642a4d20e4d8b526083fa92957f4c1bb10ce5a1..586832ab49ad8272762c06555c98cfc286a6fe3f 100644
--- a/L2J_DataPack_BETA/dist/game/data/instances/SecretArea.xml
+++ b/L2J_DataPack_BETA/dist/game/data/instances/SecretArea.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<instance name="Secret Area in the Keucereus Fortress" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="instance.xsd">
+<instance name="Secret Area in the Keucereus Fortress" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/instance.xsd">
 	<activityTime val="15" />
 	<allowSummon val="false" />
 	<emptyDestroyTime val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/instances/SeedOfDestructionStage1.xml b/L2J_DataPack_BETA/dist/game/data/instances/SeedOfDestructionStage1.xml
index 265ea4521f8834f0a3576111207038c2ff72745b..b1d4d4997747c8b4141de3f41b06f3bdfae90e2a 100644
--- a/L2J_DataPack_BETA/dist/game/data/instances/SeedOfDestructionStage1.xml
+++ b/L2J_DataPack_BETA/dist/game/data/instances/SeedOfDestructionStage1.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<instance name="SeedOfDestruction" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="instance.xsd">
+<instance name="SeedOfDestruction" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/instance.xsd">
 	<activityTime val="130" />
 	<allowSummon val="false" />
 	<emptyDestroyTime val="900" />
diff --git a/L2J_DataPack_BETA/dist/game/data/instances/coliseum.xml b/L2J_DataPack_BETA/dist/game/data/instances/coliseum.xml
index 54a4348d477e10971df873e9ea42c2a107adf570..93a59d4b40d97122068497ae03b4e99be5aa59b9 100644
--- a/L2J_DataPack_BETA/dist/game/data/instances/coliseum.xml
+++ b/L2J_DataPack_BETA/dist/game/data/instances/coliseum.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<instance name="coliseum" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="instance.xsd">
+<instance name="coliseum" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/instance.xsd">
 	<doorlist>
 		<door doorId="24190001" />
 		<door doorId="24190002" />
diff --git a/L2J_DataPack_BETA/dist/game/data/instances/demo.xml b/L2J_DataPack_BETA/dist/game/data/instances/demo.xml
index 8542c1abde6bdb71f11225dce5d0e918b7837320..62492bbedf0532b3baf06f00a6a19568a4145573 100644
--- a/L2J_DataPack_BETA/dist/game/data/instances/demo.xml
+++ b/L2J_DataPack_BETA/dist/game/data/instances/demo.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<instance name="Giran Marketplace" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="instance.xsd">
+<instance name="Giran Marketplace" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/instance.xsd">
 	<activityTime val="5" />
 	<emptyDestroyTime val="5" />
 	<spawnlist>
diff --git a/L2J_DataPack_BETA/dist/game/data/instances/fortdungeon.xml b/L2J_DataPack_BETA/dist/game/data/instances/fortdungeon.xml
index 17551231c14d691a76a81470c1e1e60e928a86d7..b7bb638216a8fcf046e19619d8ff1190ae6903a9 100644
--- a/L2J_DataPack_BETA/dist/game/data/instances/fortdungeon.xml
+++ b/L2J_DataPack_BETA/dist/game/data/instances/fortdungeon.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<instance name="Fortress Dungeon" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="instance.xsd">
+<instance name="Fortress Dungeon" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/instance.xsd">
 	<activityTime val="60" />
 	<allowSummon val="false" />
 	<emptyDestroyTime val="300" />
diff --git a/L2J_DataPack_BETA/dist/game/data/levelUpCrystalData.xml b/L2J_DataPack_BETA/dist/game/data/levelUpCrystalData.xml
index 104a03a9ffe0dfb6d4f5759e2b08ff896621e364..2b177be39f62a288a08a42f0407744f0a62c0ddb 100644
--- a/L2J_DataPack_BETA/dist/game/data/levelUpCrystalData.xml
+++ b/L2J_DataPack_BETA/dist/game/data/levelUpCrystalData.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="levelUpCrystalData.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/levelUpCrystalData.xsd">
 	<crystal>
 		<item itemId="4629" level="0" leveledItemId="4630" /> <!-- RED 0 - 1 -->
 		<item itemId="4630" level="1" leveledItemId="4631" /> <!-- RED 1 - 2 -->
diff --git a/L2J_DataPack_BETA/dist/game/data/mapregion/DMZ.xml b/L2J_DataPack_BETA/dist/game/data/mapregion/DMZ.xml
index 090a628865b762ae4879f8ab9483fadc5f8b8fc4..324b5a80a92257e325a33db939f4c1d86af2aba6 100644
--- a/L2J_DataPack_BETA/dist/game/data/mapregion/DMZ.xml
+++ b/L2J_DataPack_BETA/dist/game/data/mapregion/DMZ.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="MapRegion.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/MapRegion.xsd">
 	<!-- DMZ -->
 	<region name="DMZ" town="Neutral Zone" castle="1" locId="913" bbs="7">
 		<respawnPoint X="-14288" Y="122752" Z="-3000" />
diff --git a/L2J_DataPack_BETA/dist/game/data/mapregion/aden_town.xml b/L2J_DataPack_BETA/dist/game/data/mapregion/aden_town.xml
index b325e4de176db4e9f49d4f9d9c8a7d66c4aaea16..eb6aff4c0348f2d399d9e957845e126519335b10 100644
--- a/L2J_DataPack_BETA/dist/game/data/mapregion/aden_town.xml
+++ b/L2J_DataPack_BETA/dist/game/data/mapregion/aden_town.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="MapRegion.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/MapRegion.xsd">
 	<!-- Aden Town -->
 	<region name="aden_town" town="Aden Castle Town" castle="5" locId="924" bbs="13">
 		<respawnPoint X="146494" Y="30584" Z="-2420" />
diff --git a/L2J_DataPack_BETA/dist/game/data/mapregion/colosseum.xml b/L2J_DataPack_BETA/dist/game/data/mapregion/colosseum.xml
index 329f26f227e83395c01a8f720b471586615fd5fc..61a6445145987cbe13a38e981eb0fef923d02fcf 100644
--- a/L2J_DataPack_BETA/dist/game/data/mapregion/colosseum.xml
+++ b/L2J_DataPack_BETA/dist/game/data/mapregion/colosseum.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="MapRegion.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/MapRegion.xsd">
 	<!-- Colosseum -->
 	<region name="colosseum" town="Coliseum" castle="5" locId="925" bbs="13">
 		<respawnPoint X="147420" Y="46378" Z="-3350" />
diff --git a/L2J_DataPack_BETA/dist/game/data/mapregion/darkelf_town.xml b/L2J_DataPack_BETA/dist/game/data/mapregion/darkelf_town.xml
index 49887510d276ef555e5737346b9365744fa5c79c..8a9f8ea08024a96daed110b0256a3e7bb94a3ee7 100644
--- a/L2J_DataPack_BETA/dist/game/data/mapregion/darkelf_town.xml
+++ b/L2J_DataPack_BETA/dist/game/data/mapregion/darkelf_town.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="MapRegion.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/MapRegion.xsd">
 	<!-- Darkelf Town -->
 	<region name="darkelf_town" town="Darkelven Town" castle="4" locId="915" bbs="3">
 		<respawnPoint X="11632" Y="16812" Z="-4500" />
diff --git a/L2J_DataPack_BETA/dist/game/data/mapregion/dion_castle_town.xml b/L2J_DataPack_BETA/dist/game/data/mapregion/dion_castle_town.xml
index d1236ac6869474a0996c21b567a7fad9b9f3ff51..a61dfa845183f6e8cbb6aad5bda991213da92888 100644
--- a/L2J_DataPack_BETA/dist/game/data/mapregion/dion_castle_town.xml
+++ b/L2J_DataPack_BETA/dist/game/data/mapregion/dion_castle_town.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="MapRegion.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/MapRegion.xsd">
 	<!-- Dion Castle Town -->
 	<region name="dion_castle_town" town="Dion Castle Town" castle="2" locId="916" bbs="5">
 		<respawnPoint X="19025" Y="145245" Z="-3107" />
diff --git a/L2J_DataPack_BETA/dist/game/data/mapregion/dwarf_town.xml b/L2J_DataPack_BETA/dist/game/data/mapregion/dwarf_town.xml
index dd2206c986b6b83366e981c8771a3284bbb6201c..3fe8b4d13ef223407302c1bbea500c3b94db22fd 100644
--- a/L2J_DataPack_BETA/dist/game/data/mapregion/dwarf_town.xml
+++ b/L2J_DataPack_BETA/dist/game/data/mapregion/dwarf_town.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="MapRegion.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/MapRegion.xsd">
 	<!-- Dwarf Town -->
 	<region name="dwarf_town" town="Dwarven Town" castle="9" locId="921" bbs="9">
 		<respawnPoint X="116176" Y="-182448" Z="-1400" />
diff --git a/L2J_DataPack_BETA/dist/game/data/mapregion/elf_town.xml b/L2J_DataPack_BETA/dist/game/data/mapregion/elf_town.xml
index 0d5273b3e58b5da50d89e6a4c6b63a761ba40792..dfab90be7827f8199ec9c4291c1f697e3c6b3aac 100644
--- a/L2J_DataPack_BETA/dist/game/data/mapregion/elf_town.xml
+++ b/L2J_DataPack_BETA/dist/game/data/mapregion/elf_town.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="MapRegion.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/MapRegion.xsd">
 	<!-- Elf Town -->
 	<region name="elf_town" town="Elven Town" castle="4" locId="914" bbs="4">
 		<respawnPoint X="45487" Y="49767" Z="-2950" />
diff --git a/L2J_DataPack_BETA/dist/game/data/mapregion/fantasy_island.xml b/L2J_DataPack_BETA/dist/game/data/mapregion/fantasy_island.xml
index bfc03b8b03d5ca0af9ca802c129420a16d744919..80e263390e8a341f5073bc637d413a5b42d23e40 100644
--- a/L2J_DataPack_BETA/dist/game/data/mapregion/fantasy_island.xml
+++ b/L2J_DataPack_BETA/dist/game/data/mapregion/fantasy_island.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="MapRegion.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/MapRegion.xsd">
 	<!-- Crate01 -->
 	<region name="crate01" town="Fantasy Island" castle="8" locId="2259" bbs="14">
 		<respawnPoint X="-87123" Y="-16464" Z="-8320" />
diff --git a/L2J_DataPack_BETA/dist/game/data/mapregion/floran_town.xml b/L2J_DataPack_BETA/dist/game/data/mapregion/floran_town.xml
index 6cf9be047515fa13d6b2c20f0d49e18bea356ef6..2fb090f91eba143deb72f05cfbd066c9c72e556c 100644
--- a/L2J_DataPack_BETA/dist/game/data/mapregion/floran_town.xml
+++ b/L2J_DataPack_BETA/dist/game/data/mapregion/floran_town.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="MapRegion.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/MapRegion.xsd">
 	<!-- Floran Town -->
 	<region name="floran_town" town="Floran Town" castle="2" locId="917" bbs="5">
 		<respawnPoint X="19025" Y="145245" Z="-3107" />
diff --git a/L2J_DataPack_BETA/dist/game/data/mapregion/giran_castle_town.xml b/L2J_DataPack_BETA/dist/game/data/mapregion/giran_castle_town.xml
index b9df4dedf5bd4dc346b03345322016b9cfafe7b2..6fe604576a7a905451b56c1720343c344b5b35d8 100644
--- a/L2J_DataPack_BETA/dist/game/data/mapregion/giran_castle_town.xml
+++ b/L2J_DataPack_BETA/dist/game/data/mapregion/giran_castle_town.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="MapRegion.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/MapRegion.xsd">
 	<!-- Giran Castle Town -->
 	<region name="giran_castle_town" town="Giran Castle Town" castle="3" locId="918" bbs="6">
 		<respawnPoint X="82480" Y="149087" Z="-3350" />
diff --git a/L2J_DataPack_BETA/dist/game/data/mapregion/giran_habor.xml b/L2J_DataPack_BETA/dist/game/data/mapregion/giran_habor.xml
index 5e9957e55662c6ffde74709e2842f425189fca2f..fac07b4e2d6dc678d2d3fc4fbebd0d902c798f74 100644
--- a/L2J_DataPack_BETA/dist/game/data/mapregion/giran_habor.xml
+++ b/L2J_DataPack_BETA/dist/game/data/mapregion/giran_habor.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="MapRegion.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/MapRegion.xsd">
 	<!-- Giran Habor -->
 	<region name="giran_habor" town="Giran Habor" castle="3" locId="919" bbs="6">
 		<respawnPoint X="46763" Y="187041" Z="-3451" />
diff --git a/L2J_DataPack_BETA/dist/game/data/mapregion/gludin_town.xml b/L2J_DataPack_BETA/dist/game/data/mapregion/gludin_town.xml
index e432a17d029f154327fd726a9738e82e4bb4e292..bb5de182e93ea75a2aa1a01f53335cb5d66469a0 100644
--- a/L2J_DataPack_BETA/dist/game/data/mapregion/gludin_town.xml
+++ b/L2J_DataPack_BETA/dist/game/data/mapregion/gludin_town.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="MapRegion.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/MapRegion.xsd">
 	<!-- Gludin Town -->
 	<region name="gludin_town" town="Gludin Castle Town" castle="1" locId="911" bbs="2">
 		<respawnPoint X="-83520" Y="150560" Z="-3000" />
diff --git a/L2J_DataPack_BETA/dist/game/data/mapregion/gludio_castle_town.xml b/L2J_DataPack_BETA/dist/game/data/mapregion/gludio_castle_town.xml
index 63594a4462c41a6b81ab8ee7fdb2cf1605c43301..6e1f7b0aeefb6dcec03eacfa2387e376b54b078a 100644
--- a/L2J_DataPack_BETA/dist/game/data/mapregion/gludio_castle_town.xml
+++ b/L2J_DataPack_BETA/dist/game/data/mapregion/gludio_castle_town.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="MapRegion.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/MapRegion.xsd">
 	<!-- Gludio Castle Town -->
 	<region name="gludio_castle_town" town="Gludio Castle Town" castle="1" locId="912" bbs="2">
 		<respawnPoint X="-14288" Y="122752" Z="-3000" />
diff --git a/L2J_DataPack_BETA/dist/game/data/mapregion/gm_regions.xml b/L2J_DataPack_BETA/dist/game/data/mapregion/gm_regions.xml
index c7b15eccfdf0ff5b123cda86f191e04879c46bed..63bafba02ce30482efab708c6155fd5e619ffb74 100644
--- a/L2J_DataPack_BETA/dist/game/data/mapregion/gm_regions.xml
+++ b/L2J_DataPack_BETA/dist/game/data/mapregion/gm_regions.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="MapRegion.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/MapRegion.xsd">
 	<!-- Gm Room -->
 	<region name="gm_room" town="GM Consultation Service" castle="5" locId="1222" bbs="9">
 		<!-- FIXME: Needs confirm castle -->
diff --git a/L2J_DataPack_BETA/dist/game/data/mapregion/godard_town.xml b/L2J_DataPack_BETA/dist/game/data/mapregion/godard_town.xml
index ceb53b22ab186bf8d5df6b7a667dca09e44e4f2d..fbb635c1d513366ae803b582cd7305e37a2af007 100644
--- a/L2J_DataPack_BETA/dist/game/data/mapregion/godard_town.xml
+++ b/L2J_DataPack_BETA/dist/game/data/mapregion/godard_town.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="MapRegion.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/MapRegion.xsd">
 	<!-- Godard Town -->
 	<region name="godard_town" town="Goddard Town" castle="7" locId="1538" bbs="15">
 		<respawnPoint X="148560" Y="-55904" Z="-2779" />
diff --git a/L2J_DataPack_BETA/dist/game/data/mapregion/heiness_town.xml b/L2J_DataPack_BETA/dist/game/data/mapregion/heiness_town.xml
index 3df80754680b55f9be054801ed34553dab63051c..054544ad873f424a2879971d6633b8e75f434c27 100644
--- a/L2J_DataPack_BETA/dist/game/data/mapregion/heiness_town.xml
+++ b/L2J_DataPack_BETA/dist/game/data/mapregion/heiness_town.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="MapRegion.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/MapRegion.xsd">
 	<!-- Heiness Town -->
 	<region name="heiness_town" town="Heine Town" castle="6" locId="926" bbs="12">
 		<respawnPoint X="107568" Y="218256" Z="-3624" />
diff --git a/L2J_DataPack_BETA/dist/game/data/mapregion/hunter_town.xml b/L2J_DataPack_BETA/dist/game/data/mapregion/hunter_town.xml
index a8d759018807c04c6551fe13fc851abf011b61da..65d4d5bf1d2617724d7c1575137767e3efc8169b 100644
--- a/L2J_DataPack_BETA/dist/game/data/mapregion/hunter_town.xml
+++ b/L2J_DataPack_BETA/dist/game/data/mapregion/hunter_town.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="MapRegion.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/MapRegion.xsd">
 	<!-- Hunter Town -->
 	<region name="hunter_town" town="Hunters Village" castle="5" locId="923" bbs="11">
 		<respawnPoint X="116127" Y="76015" Z="-2729" />
diff --git a/L2J_DataPack_BETA/dist/game/data/mapregion/inner_annihilation.xml b/L2J_DataPack_BETA/dist/game/data/mapregion/inner_annihilation.xml
index 5f87f88ea02309f6fffc5c61738c2b5e228af387..1c9244c2ea038833bc9c3f8940cdaaf8e37ef132 100644
--- a/L2J_DataPack_BETA/dist/game/data/mapregion/inner_annihilation.xml
+++ b/L2J_DataPack_BETA/dist/game/data/mapregion/inner_annihilation.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="MapRegion.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/MapRegion.xsd">
 	<!-- Inner Annihilation01 -->
 	<region name="inner_annihilation01" town="Seed of Annihilation" castle="1" locId="3170" bbs="2">
 		<respawnPoint X="-178256" Y="153397" Z="2472" />
diff --git a/L2J_DataPack_BETA/dist/game/data/mapregion/kamael_town.xml b/L2J_DataPack_BETA/dist/game/data/mapregion/kamael_town.xml
index 5c32d95f6957313857664b592e00cceaaea01321..9fa3a4a25e29834cb29be1ff4b57bd2dee297952 100644
--- a/L2J_DataPack_BETA/dist/game/data/mapregion/kamael_town.xml
+++ b/L2J_DataPack_BETA/dist/game/data/mapregion/kamael_town.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="MapRegion.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/MapRegion.xsd">
 	<!-- Kamael Town -->
 	<region name="kamael_town" town="Soul Island" castle="5" locId="2189" bbs="13">
 		<respawnPoint X="-118092" Y="46955" Z="342" />
diff --git a/L2J_DataPack_BETA/dist/game/data/mapregion/miscs.xml b/L2J_DataPack_BETA/dist/game/data/mapregion/miscs.xml
index a8ac00d49072d4b28c50e0300086bdd5f885ef84..914ae5b7353fa2cd6e3852e4fd27e76038805d1a 100644
--- a/L2J_DataPack_BETA/dist/game/data/mapregion/miscs.xml
+++ b/L2J_DataPack_BETA/dist/game/data/mapregion/miscs.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="MapRegion.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/MapRegion.xsd">
 	<!-- The Royal Family's Catacomb -->
 	<region name="the_royal_family's_catacomb" town="The Royal Family's Catacomb" castle="7" locId="1659" bbs="15">
 		<respawnPoint X="181544" Y="-80897" Z="-2728" />
diff --git a/L2J_DataPack_BETA/dist/game/data/mapregion/monster_race.xml b/L2J_DataPack_BETA/dist/game/data/mapregion/monster_race.xml
index cae3a0c2111726f15c33d17d4f111be9c41240f3..b6202d2986ce0da0d190b3d4920d496dcd427070 100644
--- a/L2J_DataPack_BETA/dist/game/data/mapregion/monster_race.xml
+++ b/L2J_DataPack_BETA/dist/game/data/mapregion/monster_race.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="MapRegion.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/MapRegion.xsd">
 	<!-- Monster Race -->
 	<region name="monster_race" town="Floran Town" castle="2" locId="917" bbs="5">
 		<respawnPoint X="11892" Y="181700" Z="-3560" />
diff --git a/L2J_DataPack_BETA/dist/game/data/mapregion/orc_town.xml b/L2J_DataPack_BETA/dist/game/data/mapregion/orc_town.xml
index 7a9f356a3350d939d36e9758855cfe0aff086ca4..f603824507c956412d96e303f9ca9063c73b5bf5 100644
--- a/L2J_DataPack_BETA/dist/game/data/mapregion/orc_town.xml
+++ b/L2J_DataPack_BETA/dist/game/data/mapregion/orc_town.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="MapRegion.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/MapRegion.xsd">
 	<!-- Orc Town -->
 	<region name="orc_town" town="Orc Town" castle="9" locId="920" bbs="9">
 		<respawnPoint X="-44316" Y="-113136" Z="-80" />
diff --git a/L2J_DataPack_BETA/dist/game/data/mapregion/oren_castle_town.xml b/L2J_DataPack_BETA/dist/game/data/mapregion/oren_castle_town.xml
index 7bce74795a8d017adafee4fcb3831ba2f62198b4..e76e669041d5403338a787ef9b5d741c5ccf7f5c 100644
--- a/L2J_DataPack_BETA/dist/game/data/mapregion/oren_castle_town.xml
+++ b/L2J_DataPack_BETA/dist/game/data/mapregion/oren_castle_town.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="MapRegion.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/MapRegion.xsd">
 	<!-- Oren Castle Town -->
 	<region name="oren_castle_town" town="Oren Castle Town" castle="4" locId="922" bbs="10">
 		<respawnPoint X="80304" Y="56241" Z="-1500" />
diff --git a/L2J_DataPack_BETA/dist/game/data/mapregion/primeval_island.xml b/L2J_DataPack_BETA/dist/game/data/mapregion/primeval_island.xml
index 7170a3fce081f0a6a1ca16cb074140d83441ad17..5f269fb010dae362e8c42ba7978b5d3a5c4685a3 100644
--- a/L2J_DataPack_BETA/dist/game/data/mapregion/primeval_island.xml
+++ b/L2J_DataPack_BETA/dist/game/data/mapregion/primeval_island.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="MapRegion.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/MapRegion.xsd">
 	<!-- Primeval Island -->
 	<region name="primeval_island" town="Primeval Island" castle="8" locId="1924" bbs="14">
 		<respawnPoint X="11088" Y="-24768" Z="-3644" />
diff --git a/L2J_DataPack_BETA/dist/game/data/mapregion/rift_bitween_worlds.xml b/L2J_DataPack_BETA/dist/game/data/mapregion/rift_bitween_worlds.xml
index fa79776eeccf5c01db584c3732bd5ed5dd9c162a..d52f4733368d61962b27d2f467edbc0805a6a0b8 100644
--- a/L2J_DataPack_BETA/dist/game/data/mapregion/rift_bitween_worlds.xml
+++ b/L2J_DataPack_BETA/dist/game/data/mapregion/rift_bitween_worlds.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="MapRegion.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/MapRegion.xsd">
 	<!-- Rift Bitween Worlds -->
 	<region name="rift_bitween_worlds" town="Dimensional Rift" castle="5" locId="1643" bbs="100">
 		<!-- FIXME: Needs confirm castle -->
diff --git a/L2J_DataPack_BETA/dist/game/data/mapregion/rune_town.xml b/L2J_DataPack_BETA/dist/game/data/mapregion/rune_town.xml
index 13d799fbdb3664f0df2c26c4951d0ba234d97721..cf0625ef91bf05bc1b1748078cac47b2122ddae8 100644
--- a/L2J_DataPack_BETA/dist/game/data/mapregion/rune_town.xml
+++ b/L2J_DataPack_BETA/dist/game/data/mapregion/rune_town.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="MapRegion.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/MapRegion.xsd">
 	<!-- Rune Town -->
 	<region name="rune_town" town="Rune Town" castle="8" locId="1537" bbs="14">
 		<respawnPoint X="38096" Y="-46976" Z="899" />
diff --git a/L2J_DataPack_BETA/dist/game/data/mapregion/talking_island_town.xml b/L2J_DataPack_BETA/dist/game/data/mapregion/talking_island_town.xml
index f3989990f29810693d05c483b80c5d5792a0b9f1..f41bc317c5a7c64fc050430a5f20899062d225f2 100644
--- a/L2J_DataPack_BETA/dist/game/data/mapregion/talking_island_town.xml
+++ b/L2J_DataPack_BETA/dist/game/data/mapregion/talking_island_town.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="MapRegion.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/MapRegion.xsd">
 	<!-- Talking Island Town -->
 	<region name="talking_island_town" town="Talking Island Town" castle="1" locId="910" bbs="1">
 		<respawnPoint X="-83990" Y="243336" Z="-3700" />
diff --git a/L2J_DataPack_BETA/dist/game/data/mapregion/town_of_schuttgart.xml b/L2J_DataPack_BETA/dist/game/data/mapregion/town_of_schuttgart.xml
index a685c323b13945b1a1221a47ff7bf1a86924aac9..328a276e6b1e88b3e30c25e67ba70b94188fa07d 100644
--- a/L2J_DataPack_BETA/dist/game/data/mapregion/town_of_schuttgart.xml
+++ b/L2J_DataPack_BETA/dist/game/data/mapregion/town_of_schuttgart.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="MapRegion.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/MapRegion.xsd">
 	<!-- Town Of Schuttgart -->
 	<region name="town_of_schuttgart" town="Town of Schuttgart" castle="9" locId="1714" bbs="9">
 		<respawnPoint X="88240" Y="-142736" Z="-1341" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/001.xml
index 333276ab1a2b19558a4c5ed08ba5a5e23955a91d..e8c4b7a0bdaacb0e311f8535dc3bc608487c86ca 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/001.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="2100" id="57" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/002.xml b/L2J_DataPack_BETA/dist/game/data/multisell/002.xml
index 1c305ac0cf220476acfebd809d9cf97e33d1cab4..414d10fc5ed83f8b859374807c15eb87de87b532 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/002.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/002.xml
@@ -1,9 +1,9 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Dimensional Diamond -->
 		<ingredient count="5" id="7562" />
-		<!-- Scroll of Escape: Talking Island -->
+		<!-- Scroll of Escape: Talking Island Village -->
 		<production count="1" id="7117" />
 	</item>
 	<item>
@@ -15,7 +15,7 @@
 	<item>
 		<!-- Dimensional Diamond -->
 		<ingredient count="5" id="7562" />
-		<!-- Scroll of Escape: Dark Elf Village -->
+		<!-- Scroll of Escape: Dark Elven Village -->
 		<production count="1" id="7119" />
 	</item>
 	<item>
@@ -57,19 +57,19 @@
 	<item>
 		<!-- Dimensional Diamond -->
 		<ingredient count="8" id="7562" />
-		<!-- Scroll of Escape: Floran -->
+		<!-- Scroll of Escape: Floran Village -->
 		<production count="1" id="7125" />
 	</item>
 	<item>
 		<!-- Dimensional Diamond -->
 		<ingredient count="8" id="7562" />
-		<!-- Scroll of Escape: Giran Castle Town -->
+		<!-- Scroll of Escape: Town of Giran -->
 		<production count="1" id="7126" />
 	</item>
 	<item>
 		<!-- Dimensional Diamond -->
 		<ingredient count="8" id="7562" />
-		<!-- Scroll of Escape: Hardin's Private Academy -->
+		<!-- Scroll of Escape: Hardin's Academy -->
 		<production count="1" id="7127" />
 	</item>
 	<item>
@@ -99,7 +99,7 @@
 	<item>
 		<!-- Dimensional Diamond -->
 		<ingredient count="8" id="7562" />
-		<!-- Scroll of Escape: Aden Castle Town -->
+		<!-- Scroll of Escape: Town of Aden -->
 		<production count="1" id="7132" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/003.xml b/L2J_DataPack_BETA/dist/game/data/multisell/003.xml
index 1909ea0811d49ef5544c9e7f8a6739ef250d00f5..72e0d037246db1b8ee83952d2617e041c94a347d 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/003.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/003.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Club -->
 		<ingredient count="1" id="4" />
@@ -421,7 +421,7 @@
 		<ingredient count="1" id="9" />
 		<!-- Adena -->
 		<ingredient count="90090" id="57" />
-		<!-- Journeyman's Staff -->
+		<!-- Apprentice's Staff -->
 		<production count="1" id="176" />
 	</item>
 	<item>
@@ -433,7 +433,7 @@
 		<production count="1" id="310" />
 	</item>
 	<item>
-		<!-- Journeyman's Staff -->
+		<!-- Apprentice's Staff -->
 		<ingredient count="1" id="176" />
 		<!-- Adena -->
 		<ingredient count="118800" id="57" />
@@ -441,7 +441,7 @@
 		<production count="1" id="177" />
 	</item>
 	<item>
-		<!-- Journeyman's Staff -->
+		<!-- Apprentice's Staff -->
 		<ingredient count="1" id="176" />
 		<!-- Adena -->
 		<ingredient count="118800" id="57" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/009.xml b/L2J_DataPack_BETA/dist/game/data/multisell/009.xml
index 7e10e92e08c559ce9e8a7c8be92940984e639ca2..71eeadf3eba5c164376f80f596ada0b2368943f0 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/009.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/009.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Fish Oil -->
 		<ingredient count="1" id="6908" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/1000.xml b/L2J_DataPack_BETA/dist/game/data/multisell/1000.xml
index 1e1fc848e70e7366f69cfac984816c9843c45efa..528d7e96649b71f30cf80668a8f9f18bbfe9782a 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/1000.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/1000.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Iron Canine -->
 		<ingredient count="1" id="2505" />
@@ -187,11 +187,11 @@
 		<ingredient count="17" id="2130" />
 		<!-- Adena -->
 		<ingredient count="16800" id="57" isTaxIngredient="true" />
-		<!-- Wolf's Hard Leather Mail -->
+		<!-- Wolf's Hard Leather Armor -->
 		<production count="1" id="3892" />
 	</item>
 	<item>
-		<!-- Wolf's Hard Leather Mail -->
+		<!-- Wolf's Hard Leather Armor -->
 		<ingredient count="1" id="3892" />
 		<!-- Gemstone D -->
 		<ingredient count="28" id="2130" />
@@ -237,11 +237,11 @@
 		<ingredient count="72" id="2130" />
 		<!-- Adena -->
 		<ingredient count="72000" id="57" isTaxIngredient="true" />
-		<!-- Wof's Bronze Armor -->
+		<!-- Wolf's Bronze Armor -->
 		<production count="1" id="3897" />
 	</item>
 	<item>
-		<!-- Wof's Bronze Armor -->
+		<!-- Wolf's Bronze Armor -->
 		<ingredient count="1" id="3897" />
 		<!-- Gemstone D -->
 		<ingredient count="84" id="2130" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/1001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/1001.xml
index e2b0edb82ecdb600ce5fc6a8d2fd3b3b41086d11..a88d117244814725946911e526ce678a40459f47 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/1001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/1001.xml
@@ -1,11 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Saber -->
 		<ingredient count="1" id="123" />
 		<!-- Saber -->
 		<ingredient count="1" id="123" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="131" id="1458" />
 		<!-- Adena -->
 		<ingredient count="84825" id="57" isTaxIngredient="true" />
@@ -17,7 +17,7 @@
 		<ingredient count="1" id="123" />
 		<!-- Bastard Sword -->
 		<ingredient count="1" id="69" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="23" id="1458" />
 		<!-- Adena -->
 		<ingredient count="14625" id="57" isTaxIngredient="true" />
@@ -29,7 +29,7 @@
 		<ingredient count="1" id="123" />
 		<!-- Spinebone Sword -->
 		<ingredient count="1" id="125" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="23" id="1458" />
 		<!-- Adena -->
 		<ingredient count="14625" id="57" isTaxIngredient="true" />
@@ -41,7 +41,7 @@
 		<ingredient count="1" id="123" />
 		<!-- Artisan's Sword -->
 		<ingredient count="1" id="126" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="23" id="1458" />
 		<!-- Adena -->
 		<ingredient count="14625" id="57" isTaxIngredient="true" />
@@ -53,7 +53,7 @@
 		<ingredient count="1" id="123" />
 		<!-- Knight's Sword -->
 		<ingredient count="1" id="128" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="23" id="1458" />
 		<!-- Adena -->
 		<ingredient count="14625" id="57" isTaxIngredient="true" />
@@ -65,7 +65,7 @@
 		<ingredient count="1" id="123" />
 		<!-- Crimson Sword -->
 		<ingredient count="1" id="127" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="46" id="1458" />
 		<!-- Adena -->
 		<ingredient count="29835" id="57" isTaxIngredient="true" />
@@ -77,7 +77,7 @@
 		<ingredient count="1" id="123" />
 		<!-- Elven Sword -->
 		<ingredient count="1" id="130" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="46" id="1458" />
 		<!-- Adena -->
 		<ingredient count="29835" id="57" isTaxIngredient="true" />
@@ -89,7 +89,7 @@
 		<ingredient count="1" id="123" />
 		<!-- Sword of Revolution -->
 		<ingredient count="1" id="129" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="326" id="1458" />
 		<!-- Adena -->
 		<ingredient count="211770" id="57" isTaxIngredient="true" />
@@ -101,7 +101,7 @@
 		<ingredient count="1" id="123" />
 		<!-- Elven Long Sword -->
 		<ingredient count="1" id="2499" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="185" id="1458" />
 		<!-- Adena -->
 		<ingredient count="119925" id="57" isTaxIngredient="true" />
@@ -113,7 +113,7 @@
 		<ingredient count="1" id="69" />
 		<!-- Bastard Sword -->
 		<ingredient count="1" id="69" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="241" id="1458" />
 		<!-- Adena -->
 		<ingredient count="156780" id="57" isTaxIngredient="true" />
@@ -125,7 +125,7 @@
 		<ingredient count="1" id="69" />
 		<!-- Spinebone Sword -->
 		<ingredient count="1" id="125" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="241" id="1458" />
 		<!-- Adena -->
 		<ingredient count="156780" id="57" isTaxIngredient="true" />
@@ -137,7 +137,7 @@
 		<ingredient count="1" id="69" />
 		<!-- Artisan's Sword -->
 		<ingredient count="1" id="126" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="241" id="1458" />
 		<!-- Adena -->
 		<ingredient count="156780" id="57" isTaxIngredient="true" />
@@ -149,7 +149,7 @@
 		<ingredient count="1" id="69" />
 		<!-- Knight's Sword -->
 		<ingredient count="1" id="128" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="241" id="1458" />
 		<!-- Adena -->
 		<ingredient count="156780" id="57" isTaxIngredient="true" />
@@ -161,7 +161,7 @@
 		<ingredient count="1" id="69" />
 		<!-- Crimson Sword -->
 		<ingredient count="1" id="127" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="105" id="1458" />
 		<!-- Adena -->
 		<ingredient count="68445" id="57" isTaxIngredient="true" />
@@ -173,7 +173,7 @@
 		<ingredient count="1" id="69" />
 		<!-- Elven Sword -->
 		<ingredient count="1" id="130" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="105" id="1458" />
 		<!-- Adena -->
 		<ingredient count="68445" id="57" isTaxIngredient="true" />
@@ -185,7 +185,7 @@
 		<ingredient count="1" id="69" />
 		<!-- Sword of Revolution -->
 		<ingredient count="1" id="129" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="167" id="1458" />
 		<!-- Adena -->
 		<ingredient count="108225" id="57" isTaxIngredient="true" />
@@ -197,7 +197,7 @@
 		<ingredient count="1" id="69" />
 		<!-- Elven Long Sword -->
 		<ingredient count="1" id="2499" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="68" id="1458" />
 		<!-- Adena -->
 		<ingredient count="43875" id="57" isTaxIngredient="true" />
@@ -209,7 +209,7 @@
 		<ingredient count="1" id="125" />
 		<!-- Spinebone Sword -->
 		<ingredient count="1" id="125" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="241" id="1458" />
 		<!-- Adena -->
 		<ingredient count="156780" id="57" isTaxIngredient="true" />
@@ -221,7 +221,7 @@
 		<ingredient count="1" id="125" />
 		<!-- Artisan's Sword -->
 		<ingredient count="1" id="126" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="241" id="1458" />
 		<!-- Adena -->
 		<ingredient count="156780" id="57" isTaxIngredient="true" />
@@ -233,7 +233,7 @@
 		<ingredient count="1" id="125" />
 		<!-- Knight's Sword -->
 		<ingredient count="1" id="128" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="241" id="1458" />
 		<!-- Adena -->
 		<ingredient count="156780" id="57" isTaxIngredient="true" />
@@ -245,7 +245,7 @@
 		<ingredient count="1" id="125" />
 		<!-- Crimson Sword -->
 		<ingredient count="1" id="127" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="105" id="1458" />
 		<!-- Adena -->
 		<ingredient count="68445" id="57" isTaxIngredient="true" />
@@ -257,7 +257,7 @@
 		<ingredient count="1" id="125" />
 		<!-- Elven Sword -->
 		<ingredient count="1" id="130" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="105" id="1458" />
 		<!-- Adena -->
 		<ingredient count="68445" id="57" isTaxIngredient="true" />
@@ -269,7 +269,7 @@
 		<ingredient count="1" id="125" />
 		<!-- Sword of Revolution -->
 		<ingredient count="1" id="129" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="167" id="1458" />
 		<!-- Adena -->
 		<ingredient count="108225" id="57" isTaxIngredient="true" />
@@ -281,7 +281,7 @@
 		<ingredient count="1" id="125" />
 		<!-- Elven Long Sword -->
 		<ingredient count="1" id="2499" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="68" id="1458" />
 		<!-- Adena -->
 		<ingredient count="43875" id="57" isTaxIngredient="true" />
@@ -293,7 +293,7 @@
 		<ingredient count="1" id="126" />
 		<!-- Artisan's Sword -->
 		<ingredient count="1" id="126" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="241" id="1458" />
 		<!-- Adena -->
 		<ingredient count="156780" id="57" isTaxIngredient="true" />
@@ -305,7 +305,7 @@
 		<ingredient count="1" id="126" />
 		<!-- Knight's Sword -->
 		<ingredient count="1" id="128" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="241" id="1458" />
 		<!-- Adena -->
 		<ingredient count="156780" id="57" isTaxIngredient="true" />
@@ -317,7 +317,7 @@
 		<ingredient count="1" id="126" />
 		<!-- Crimson Sword -->
 		<ingredient count="1" id="127" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="105" id="1458" />
 		<!-- Adena -->
 		<ingredient count="68445" id="57" isTaxIngredient="true" />
@@ -329,7 +329,7 @@
 		<ingredient count="1" id="126" />
 		<!-- Elven Sword -->
 		<ingredient count="1" id="130" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="105" id="1458" />
 		<!-- Adena -->
 		<ingredient count="68445" id="57" isTaxIngredient="true" />
@@ -341,7 +341,7 @@
 		<ingredient count="1" id="126" />
 		<!-- Sword of Revolution -->
 		<ingredient count="1" id="129" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="167" id="1458" />
 		<!-- Adena -->
 		<ingredient count="108225" id="57" isTaxIngredient="true" />
@@ -353,7 +353,7 @@
 		<ingredient count="1" id="126" />
 		<!-- Elven Long Sword -->
 		<ingredient count="1" id="2499" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="68" id="1458" />
 		<!-- Adena -->
 		<ingredient count="43875" id="57" isTaxIngredient="true" />
@@ -365,7 +365,7 @@
 		<ingredient count="1" id="128" />
 		<!-- Knight's Sword -->
 		<ingredient count="1" id="128" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="241" id="1458" />
 		<!-- Adena -->
 		<ingredient count="156780" id="57" isTaxIngredient="true" />
@@ -377,7 +377,7 @@
 		<ingredient count="1" id="128" />
 		<!-- Crimson Sword -->
 		<ingredient count="1" id="127" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="105" id="1458" />
 		<!-- Adena -->
 		<ingredient count="68445" id="57" isTaxIngredient="true" />
@@ -389,7 +389,7 @@
 		<ingredient count="1" id="128" />
 		<!-- Elven Sword -->
 		<ingredient count="1" id="130" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="105" id="1458" />
 		<!-- Adena -->
 		<ingredient count="68445" id="57" isTaxIngredient="true" />
@@ -401,7 +401,7 @@
 		<ingredient count="1" id="128" />
 		<!-- Sword of Revolution -->
 		<ingredient count="1" id="129" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="167" id="1458" />
 		<!-- Adena -->
 		<ingredient count="108225" id="57" isTaxIngredient="true" />
@@ -413,7 +413,7 @@
 		<ingredient count="1" id="128" />
 		<!-- Elven Long Sword -->
 		<ingredient count="1" id="2499" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="68" id="1458" />
 		<!-- Adena -->
 		<ingredient count="43875" id="57" isTaxIngredient="true" />
@@ -425,7 +425,7 @@
 		<ingredient count="1" id="127" />
 		<!-- Crimson Sword -->
 		<ingredient count="1" id="127" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="49" id="1458" />
 		<!-- Adena -->
 		<ingredient count="31590" id="57" isTaxIngredient="true" />
@@ -437,7 +437,7 @@
 		<ingredient count="1" id="127" />
 		<!-- Elven Sword -->
 		<ingredient count="1" id="130" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="49" id="1458" />
 		<!-- Adena -->
 		<ingredient count="31590" id="57" isTaxIngredient="true" />
@@ -449,7 +449,7 @@
 		<ingredient count="1" id="127" />
 		<!-- Sword of Revolution -->
 		<ingredient count="1" id="129" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="239" id="1458" />
 		<!-- Adena -->
 		<ingredient count="155025" id="57" isTaxIngredient="true" />
@@ -461,7 +461,7 @@
 		<ingredient count="1" id="127" />
 		<!-- Elven Long Sword -->
 		<ingredient count="1" id="2499" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="234" id="1458" />
 		<!-- Adena -->
 		<ingredient count="152100" id="57" isTaxIngredient="true" />
@@ -473,7 +473,7 @@
 		<ingredient count="1" id="130" />
 		<!-- Elven Sword -->
 		<ingredient count="1" id="130" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="49" id="1458" />
 		<!-- Adena -->
 		<ingredient count="31590" id="57" isTaxIngredient="true" />
@@ -485,7 +485,7 @@
 		<ingredient count="1" id="130" />
 		<!-- Sword of Revolution -->
 		<ingredient count="1" id="129" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="239" id="1458" />
 		<!-- Adena -->
 		<ingredient count="155025" id="57" isTaxIngredient="true" />
@@ -497,7 +497,7 @@
 		<ingredient count="1" id="130" />
 		<!-- Elven Long Sword -->
 		<ingredient count="1" id="2499" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="234" id="1458" />
 		<!-- Adena -->
 		<ingredient count="152100" id="57" isTaxIngredient="true" />
@@ -509,7 +509,7 @@
 		<ingredient count="1" id="129" />
 		<!-- Sword of Revolution -->
 		<ingredient count="1" id="129" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="160" id="1458" />
 		<!-- Adena -->
 		<ingredient count="104130" id="57" isTaxIngredient="true" />
@@ -521,7 +521,7 @@
 		<ingredient count="1" id="129" />
 		<!-- Elven Long Sword -->
 		<ingredient count="1" id="2499" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="319" id="1458" />
 		<!-- Adena -->
 		<ingredient count="207090" id="57" isTaxIngredient="true" />
@@ -533,7 +533,7 @@
 		<ingredient count="1" id="2499" />
 		<!-- Elven Long Sword -->
 		<ingredient count="1" id="2499" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="482" id="1458" />
 		<!-- Adena -->
 		<ingredient count="312975" id="57" isTaxIngredient="true" />
@@ -545,7 +545,7 @@
 		<ingredient count="1" id="72" />
 		<!-- Stormbringer -->
 		<ingredient count="1" id="72" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="446" id="1458" />
 		<!-- Adena -->
 		<ingredient count="289575" id="57" isTaxIngredient="true" />
@@ -557,7 +557,7 @@
 		<ingredient count="1" id="72" />
 		<!-- Shamshir -->
 		<ingredient count="1" id="73" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="257" id="1458" />
 		<!-- Adena -->
 		<ingredient count="166725" id="57" isTaxIngredient="true" />
@@ -569,7 +569,7 @@
 		<ingredient count="1" id="72" />
 		<!-- Katana -->
 		<ingredient count="1" id="74" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="257" id="1458" />
 		<!-- Adena -->
 		<ingredient count="166725" id="57" isTaxIngredient="true" />
@@ -581,7 +581,7 @@
 		<ingredient count="1" id="72" />
 		<!-- Spirit Sword -->
 		<ingredient count="1" id="131" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="257" id="1458" />
 		<!-- Adena -->
 		<ingredient count="166725" id="57" isTaxIngredient="true" />
@@ -593,7 +593,7 @@
 		<ingredient count="1" id="72" />
 		<!-- Raid Sword -->
 		<ingredient count="1" id="133" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="257" id="1458" />
 		<!-- Adena -->
 		<ingredient count="166725" id="57" isTaxIngredient="true" />
@@ -605,7 +605,7 @@
 		<ingredient count="1" id="73" />
 		<!-- Shamshir -->
 		<ingredient count="1" id="73" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="859" id="1458" />
 		<!-- Adena -->
 		<ingredient count="558090" id="57" isTaxIngredient="true" />
@@ -617,7 +617,7 @@
 		<ingredient count="1" id="73" />
 		<!-- Katana -->
 		<ingredient count="1" id="74" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="859" id="1458" />
 		<!-- Adena -->
 		<ingredient count="558090" id="57" isTaxIngredient="true" />
@@ -629,7 +629,7 @@
 		<ingredient count="1" id="73" />
 		<!-- Spirit Sword -->
 		<ingredient count="1" id="131" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="859" id="1458" />
 		<!-- Adena -->
 		<ingredient count="558090" id="57" isTaxIngredient="true" />
@@ -641,7 +641,7 @@
 		<ingredient count="1" id="73" />
 		<!-- Raid Sword -->
 		<ingredient count="1" id="133" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="859" id="1458" />
 		<!-- Adena -->
 		<ingredient count="558090" id="57" isTaxIngredient="true" />
@@ -653,7 +653,7 @@
 		<ingredient count="1" id="74" />
 		<!-- Katana -->
 		<ingredient count="1" id="74" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="859" id="1458" />
 		<!-- Adena -->
 		<ingredient count="558090" id="57" isTaxIngredient="true" />
@@ -665,7 +665,7 @@
 		<ingredient count="1" id="74" />
 		<!-- Spirit Sword -->
 		<ingredient count="1" id="131" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="859" id="1458" />
 		<!-- Adena -->
 		<ingredient count="558090" id="57" isTaxIngredient="true" />
@@ -677,7 +677,7 @@
 		<ingredient count="1" id="74" />
 		<!-- Raid Sword -->
 		<ingredient count="1" id="133" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="859" id="1458" />
 		<!-- Adena -->
 		<ingredient count="558090" id="57" isTaxIngredient="true" />
@@ -689,7 +689,7 @@
 		<ingredient count="1" id="131" />
 		<!-- Spirit Sword -->
 		<ingredient count="1" id="131" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="859" id="1458" />
 		<!-- Adena -->
 		<ingredient count="558090" id="57" isTaxIngredient="true" />
@@ -701,7 +701,7 @@
 		<ingredient count="1" id="131" />
 		<!-- Raid Sword -->
 		<ingredient count="1" id="133" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="859" id="1458" />
 		<!-- Adena -->
 		<ingredient count="558090" id="57" isTaxIngredient="true" />
@@ -713,7 +713,7 @@
 		<ingredient count="1" id="133" />
 		<!-- Raid Sword -->
 		<ingredient count="1" id="133" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="859" id="1458" />
 		<!-- Adena -->
 		<ingredient count="558090" id="57" isTaxIngredient="true" />
@@ -725,7 +725,7 @@
 		<ingredient count="1" id="11614" />
 		<!-- Common Item - Saber -->
 		<ingredient count="1" id="11614" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="15" id="1458" />
 		<!-- Adena -->
 		<ingredient count="9425" id="57" isTaxIngredient="true" />
@@ -737,7 +737,7 @@
 		<ingredient count="1" id="11614" />
 		<!-- Common Item - Bastard Sword -->
 		<ingredient count="1" id="11635" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="3" id="1458" />
 		<!-- Adena -->
 		<ingredient count="1625" id="57" isTaxIngredient="true" />
@@ -749,7 +749,7 @@
 		<ingredient count="1" id="11614" />
 		<!-- Common Item - Spinebone Sword -->
 		<ingredient count="1" id="11636" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="3" id="1458" />
 		<!-- Adena -->
 		<ingredient count="1625" id="57" isTaxIngredient="true" />
@@ -761,7 +761,7 @@
 		<ingredient count="1" id="11614" />
 		<!-- Common Item - Artisan's Sword -->
 		<ingredient count="1" id="11643" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="3" id="1458" />
 		<!-- Adena -->
 		<ingredient count="1625" id="57" isTaxIngredient="true" />
@@ -773,7 +773,7 @@
 		<ingredient count="1" id="11614" />
 		<!-- Common Item - Knight's Sword -->
 		<ingredient count="1" id="11628" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="3" id="1458" />
 		<!-- Adena -->
 		<ingredient count="1625" id="57" isTaxIngredient="true" />
@@ -785,7 +785,7 @@
 		<ingredient count="1" id="11614" />
 		<!-- Common Item - Crimson Sword -->
 		<ingredient count="1" id="11675" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="5" id="1458" />
 		<!-- Adena -->
 		<ingredient count="3315" id="57" isTaxIngredient="true" />
@@ -797,7 +797,7 @@
 		<ingredient count="1" id="11614" />
 		<!-- Common Item - Elven Sword -->
 		<ingredient count="1" id="11670" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="5" id="1458" />
 		<!-- Adena -->
 		<ingredient count="3315" id="57" isTaxIngredient="true" />
@@ -809,7 +809,7 @@
 		<ingredient count="1" id="11614" />
 		<!-- Common Item - Sword of Revolution -->
 		<ingredient count="1" id="11714" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="36" id="1458" />
 		<!-- Adena -->
 		<ingredient count="23530" id="57" isTaxIngredient="true" />
@@ -821,7 +821,7 @@
 		<ingredient count="1" id="11614" />
 		<!-- Common Item - Elven Long Sword -->
 		<ingredient count="1" id="11733" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="21" id="1458" />
 		<!-- Adena -->
 		<ingredient count="13325" id="57" isTaxIngredient="true" />
@@ -833,7 +833,7 @@
 		<ingredient count="1" id="11635" />
 		<!-- Common Item - Bastard Sword -->
 		<ingredient count="1" id="11635" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="27" id="1458" />
 		<!-- Adena -->
 		<ingredient count="17420" id="57" isTaxIngredient="true" />
@@ -845,7 +845,7 @@
 		<ingredient count="1" id="11635" />
 		<!-- Common Item - Spinebone Sword -->
 		<ingredient count="1" id="11636" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="27" id="1458" />
 		<!-- Adena -->
 		<ingredient count="17420" id="57" isTaxIngredient="true" />
@@ -857,7 +857,7 @@
 		<ingredient count="1" id="11635" />
 		<!-- Common Item - Artisan's Sword -->
 		<ingredient count="1" id="11643" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="27" id="1458" />
 		<!-- Adena -->
 		<ingredient count="17420" id="57" isTaxIngredient="true" />
@@ -869,7 +869,7 @@
 		<ingredient count="1" id="11635" />
 		<!-- Common Item - Knight's Sword -->
 		<ingredient count="1" id="11628" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="27" id="1458" />
 		<!-- Adena -->
 		<ingredient count="17420" id="57" isTaxIngredient="true" />
@@ -881,7 +881,7 @@
 		<ingredient count="1" id="11635" />
 		<!-- Common Item - Crimson Sword -->
 		<ingredient count="1" id="11675" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="12" id="1458" />
 		<!-- Adena -->
 		<ingredient count="7605" id="57" isTaxIngredient="true" />
@@ -893,7 +893,7 @@
 		<ingredient count="1" id="11635" />
 		<!-- Common Item - Elven Sword -->
 		<ingredient count="1" id="11670" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="12" id="1458" />
 		<!-- Adena -->
 		<ingredient count="7605" id="57" isTaxIngredient="true" />
@@ -905,7 +905,7 @@
 		<ingredient count="1" id="11635" />
 		<!-- Common Item - Sword of Revolution -->
 		<ingredient count="1" id="11714" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="19" id="1458" />
 		<!-- Adena -->
 		<ingredient count="12025" id="57" isTaxIngredient="true" />
@@ -917,7 +917,7 @@
 		<ingredient count="1" id="11635" />
 		<!-- Common Item - Elven Long Sword -->
 		<ingredient count="1" id="11733" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="8" id="1458" />
 		<!-- Adena -->
 		<ingredient count="4875" id="57" isTaxIngredient="true" />
@@ -929,7 +929,7 @@
 		<ingredient count="1" id="11636" />
 		<!-- Common Item - Spinebone Sword -->
 		<ingredient count="1" id="11636" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="27" id="1458" />
 		<!-- Adena -->
 		<ingredient count="17420" id="57" isTaxIngredient="true" />
@@ -941,7 +941,7 @@
 		<ingredient count="1" id="11636" />
 		<!-- Common Item - Artisan's Sword -->
 		<ingredient count="1" id="11643" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="27" id="1458" />
 		<!-- Adena -->
 		<ingredient count="17420" id="57" isTaxIngredient="true" />
@@ -953,7 +953,7 @@
 		<ingredient count="1" id="11636" />
 		<!-- Common Item - Knight's Sword -->
 		<ingredient count="1" id="11628" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="27" id="1458" />
 		<!-- Adena -->
 		<ingredient count="17420" id="57" isTaxIngredient="true" />
@@ -965,7 +965,7 @@
 		<ingredient count="1" id="11636" />
 		<!-- Common Item - Crimson Sword -->
 		<ingredient count="1" id="11675" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="12" id="1458" />
 		<!-- Adena -->
 		<ingredient count="7605" id="57" isTaxIngredient="true" />
@@ -977,7 +977,7 @@
 		<ingredient count="1" id="11636" />
 		<!-- Common Item - Elven Sword -->
 		<ingredient count="1" id="11670" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="12" id="1458" />
 		<!-- Adena -->
 		<ingredient count="7605" id="57" isTaxIngredient="true" />
@@ -989,7 +989,7 @@
 		<ingredient count="1" id="11636" />
 		<!-- Common Item - Sword of Revolution -->
 		<ingredient count="1" id="11714" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="19" id="1458" />
 		<!-- Adena -->
 		<ingredient count="12025" id="57" isTaxIngredient="true" />
@@ -1001,7 +1001,7 @@
 		<ingredient count="1" id="11636" />
 		<!-- Common Item - Elven Long Sword -->
 		<ingredient count="1" id="11733" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="8" id="1458" />
 		<!-- Adena -->
 		<ingredient count="4875" id="57" isTaxIngredient="true" />
@@ -1013,7 +1013,7 @@
 		<ingredient count="1" id="11643" />
 		<!-- Common Item - Artisan's Sword -->
 		<ingredient count="1" id="11643" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="27" id="1458" />
 		<!-- Adena -->
 		<ingredient count="17420" id="57" isTaxIngredient="true" />
@@ -1025,7 +1025,7 @@
 		<ingredient count="1" id="11643" />
 		<!-- Common Item - Knight's Sword -->
 		<ingredient count="1" id="11628" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="27" id="1458" />
 		<!-- Adena -->
 		<ingredient count="17420" id="57" isTaxIngredient="true" />
@@ -1037,7 +1037,7 @@
 		<ingredient count="1" id="11643" />
 		<!-- Common Item - Crimson Sword -->
 		<ingredient count="1" id="11675" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="12" id="1458" />
 		<!-- Adena -->
 		<ingredient count="7605" id="57" isTaxIngredient="true" />
@@ -1049,7 +1049,7 @@
 		<ingredient count="1" id="11643" />
 		<!-- Common Item - Elven Sword -->
 		<ingredient count="1" id="11670" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="12" id="1458" />
 		<!-- Adena -->
 		<ingredient count="7605" id="57" isTaxIngredient="true" />
@@ -1061,7 +1061,7 @@
 		<ingredient count="1" id="11643" />
 		<!-- Common Item - Sword of Revolution -->
 		<ingredient count="1" id="11714" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="19" id="1458" />
 		<!-- Adena -->
 		<ingredient count="12025" id="57" isTaxIngredient="true" />
@@ -1073,7 +1073,7 @@
 		<ingredient count="1" id="11643" />
 		<!-- Common Item - Elven Long Sword -->
 		<ingredient count="1" id="11733" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="8" id="1458" />
 		<!-- Adena -->
 		<ingredient count="4875" id="57" isTaxIngredient="true" />
@@ -1085,7 +1085,7 @@
 		<ingredient count="1" id="11628" />
 		<!-- Common Item - Knight's Sword -->
 		<ingredient count="1" id="11628" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="27" id="1458" />
 		<!-- Adena -->
 		<ingredient count="17420" id="57" isTaxIngredient="true" />
@@ -1097,7 +1097,7 @@
 		<ingredient count="1" id="11628" />
 		<!-- Common Item - Crimson Sword -->
 		<ingredient count="1" id="11675" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="12" id="1458" />
 		<!-- Adena -->
 		<ingredient count="7605" id="57" isTaxIngredient="true" />
@@ -1109,7 +1109,7 @@
 		<ingredient count="1" id="11628" />
 		<!-- Common Item - Elven Sword -->
 		<ingredient count="1" id="11670" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="12" id="1458" />
 		<!-- Adena -->
 		<ingredient count="7605" id="57" isTaxIngredient="true" />
@@ -1121,7 +1121,7 @@
 		<ingredient count="1" id="11628" />
 		<!-- Common Item - Sword of Revolution -->
 		<ingredient count="1" id="11714" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="19" id="1458" />
 		<!-- Adena -->
 		<ingredient count="12025" id="57" isTaxIngredient="true" />
@@ -1133,7 +1133,7 @@
 		<ingredient count="1" id="11628" />
 		<!-- Common Item - Elven Long Sword -->
 		<ingredient count="1" id="11733" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="8" id="1458" />
 		<!-- Adena -->
 		<ingredient count="4875" id="57" isTaxIngredient="true" />
@@ -1145,7 +1145,7 @@
 		<ingredient count="1" id="11675" />
 		<!-- Common Item - Crimson Sword -->
 		<ingredient count="1" id="11675" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="5" id="1458" />
 		<!-- Adena -->
 		<ingredient count="3510" id="57" isTaxIngredient="true" />
@@ -1157,7 +1157,7 @@
 		<ingredient count="1" id="11675" />
 		<!-- Common Item - Elven Sword -->
 		<ingredient count="1" id="11670" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="5" id="1458" />
 		<!-- Adena -->
 		<ingredient count="3510" id="57" isTaxIngredient="true" />
@@ -1169,7 +1169,7 @@
 		<ingredient count="1" id="11675" />
 		<!-- Common Item - Sword of Revolution -->
 		<ingredient count="1" id="11714" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="27" id="1458" />
 		<!-- Adena -->
 		<ingredient count="17225" id="57" isTaxIngredient="true" />
@@ -1181,7 +1181,7 @@
 		<ingredient count="1" id="11675" />
 		<!-- Common Item - Elven Long Sword -->
 		<ingredient count="1" id="11733" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="26" id="1458" />
 		<!-- Adena -->
 		<ingredient count="16900" id="57" isTaxIngredient="true" />
@@ -1193,7 +1193,7 @@
 		<ingredient count="1" id="11670" />
 		<!-- Common Item - Elven Sword -->
 		<ingredient count="1" id="11670" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="5" id="1458" />
 		<!-- Adena -->
 		<ingredient count="3510" id="57" isTaxIngredient="true" />
@@ -1205,7 +1205,7 @@
 		<ingredient count="1" id="11670" />
 		<!-- Common Item - Sword of Revolution -->
 		<ingredient count="1" id="11714" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="27" id="1458" />
 		<!-- Adena -->
 		<ingredient count="17225" id="57" isTaxIngredient="true" />
@@ -1217,7 +1217,7 @@
 		<ingredient count="1" id="11670" />
 		<!-- Common Item - Elven Long Sword -->
 		<ingredient count="1" id="11733" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="26" id="1458" />
 		<!-- Adena -->
 		<ingredient count="16900" id="57" isTaxIngredient="true" />
@@ -1229,7 +1229,7 @@
 		<ingredient count="1" id="11714" />
 		<!-- Common Item - Sword of Revolution -->
 		<ingredient count="1" id="11714" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="18" id="1458" />
 		<!-- Adena -->
 		<ingredient count="11570" id="57" isTaxIngredient="true" />
@@ -1241,7 +1241,7 @@
 		<ingredient count="1" id="11714" />
 		<!-- Common Item - Elven Long Sword -->
 		<ingredient count="1" id="11733" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="35" id="1458" />
 		<!-- Adena -->
 		<ingredient count="23010" id="57" isTaxIngredient="true" />
@@ -1253,7 +1253,7 @@
 		<ingredient count="1" id="11733" />
 		<!-- Common Item - Elven Long Sword -->
 		<ingredient count="1" id="11733" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="54" id="1458" />
 		<!-- Adena -->
 		<ingredient count="34775" id="57" isTaxIngredient="true" />
@@ -1265,7 +1265,7 @@
 		<ingredient count="1" id="11756" />
 		<!-- Common Item - Stormbringer -->
 		<ingredient count="1" id="11756" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="50" id="1458" />
 		<!-- Adena -->
 		<ingredient count="32175" id="57" isTaxIngredient="true" />
@@ -1277,7 +1277,7 @@
 		<ingredient count="1" id="11756" />
 		<!-- Common Item - Shamshir -->
 		<ingredient count="1" id="11783" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="29" id="1458" />
 		<!-- Adena -->
 		<ingredient count="18525" id="57" isTaxIngredient="true" />
@@ -1289,7 +1289,7 @@
 		<ingredient count="1" id="11756" />
 		<!-- Common Item - Katana -->
 		<ingredient count="1" id="11794" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="29" id="1458" />
 		<!-- Adena -->
 		<ingredient count="18525" id="57" isTaxIngredient="true" />
@@ -1301,7 +1301,7 @@
 		<ingredient count="1" id="11756" />
 		<!-- Common Item - Spirit Sword -->
 		<ingredient count="1" id="11789" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="29" id="1458" />
 		<!-- Adena -->
 		<ingredient count="18525" id="57" isTaxIngredient="true" />
@@ -1313,7 +1313,7 @@
 		<ingredient count="1" id="11756" />
 		<!-- Common Item - Raid Sword -->
 		<ingredient count="1" id="11778" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="29" id="1458" />
 		<!-- Adena -->
 		<ingredient count="18525" id="57" isTaxIngredient="true" />
@@ -1325,7 +1325,7 @@
 		<ingredient count="1" id="11783" />
 		<!-- Common Item - Shamshir -->
 		<ingredient count="1" id="11783" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="95" id="1458" />
 		<!-- Adena -->
 		<ingredient count="62010" id="57" isTaxIngredient="true" />
@@ -1337,7 +1337,7 @@
 		<ingredient count="1" id="11783" />
 		<!-- Common Item - Katana -->
 		<ingredient count="1" id="11794" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="95" id="1458" />
 		<!-- Adena -->
 		<ingredient count="62010" id="57" isTaxIngredient="true" />
@@ -1349,7 +1349,7 @@
 		<ingredient count="1" id="11783" />
 		<!-- Common Item - Spirit Sword -->
 		<ingredient count="1" id="11789" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="95" id="1458" />
 		<!-- Adena -->
 		<ingredient count="62010" id="57" isTaxIngredient="true" />
@@ -1361,7 +1361,7 @@
 		<ingredient count="1" id="11783" />
 		<!-- Common Item - Raid Sword -->
 		<ingredient count="1" id="11778" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="95" id="1458" />
 		<!-- Adena -->
 		<ingredient count="62010" id="57" isTaxIngredient="true" />
@@ -1373,7 +1373,7 @@
 		<ingredient count="1" id="11794" />
 		<!-- Common Item - Katana -->
 		<ingredient count="1" id="11794" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="95" id="1458" />
 		<!-- Adena -->
 		<ingredient count="62010" id="57" isTaxIngredient="true" />
@@ -1385,7 +1385,7 @@
 		<ingredient count="1" id="11794" />
 		<!-- Common Item - Spirit Sword -->
 		<ingredient count="1" id="11789" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="95" id="1458" />
 		<!-- Adena -->
 		<ingredient count="62010" id="57" isTaxIngredient="true" />
@@ -1397,7 +1397,7 @@
 		<ingredient count="1" id="11794" />
 		<!-- Common Item - Raid Sword -->
 		<ingredient count="1" id="11778" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="95" id="1458" />
 		<!-- Adena -->
 		<ingredient count="62010" id="57" isTaxIngredient="true" />
@@ -1409,7 +1409,7 @@
 		<ingredient count="1" id="11789" />
 		<!-- Common Item - Spirit Sword -->
 		<ingredient count="1" id="11789" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="95" id="1458" />
 		<!-- Adena -->
 		<ingredient count="62010" id="57" isTaxIngredient="true" />
@@ -1421,7 +1421,7 @@
 		<ingredient count="1" id="11789" />
 		<!-- Common Item - Raid Sword -->
 		<ingredient count="1" id="11778" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="95" id="1458" />
 		<!-- Adena -->
 		<ingredient count="62010" id="57" isTaxIngredient="true" />
@@ -1433,7 +1433,7 @@
 		<ingredient count="1" id="11778" />
 		<!-- Common Item - Raid Sword -->
 		<ingredient count="1" id="11778" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="95" id="1458" />
 		<!-- Adena -->
 		<ingredient count="62010" id="57" isTaxIngredient="true" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/1002.xml b/L2J_DataPack_BETA/dist/game/data/multisell/1002.xml
index d83aaf02e7fb3f2ab1152565a30a032801a1c181..700f6e5eb84e790af4399028f846f2fb55327fe2 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/1002.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/1002.xml
@@ -1,145 +1,145 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
-		<!-- Zubei's Gauntlets -->
+		<!-- Sealed Zubei's Gauntlets -->
 		<ingredient count="1" id="612" />
 		<!-- Zubei's Gauntlets - Heavy Armor -->
 		<production count="1" id="5710" />
 	</item>
 	<item>
-		<!-- Zubei's Gauntlets -->
+		<!-- Sealed Zubei's Gauntlets -->
 		<ingredient count="1" id="612" />
 		<!-- Zubei's Gauntlets - Light Armor -->
 		<production count="1" id="5711" />
 	</item>
 	<item>
-		<!-- Zubei's Gauntlets -->
+		<!-- Sealed Zubei's Gauntlets -->
 		<ingredient count="1" id="612" />
 		<!-- Zubei's Gauntlets - Robe -->
 		<production count="1" id="5712" />
 	</item>
 	<item>
-		<!-- Avadon Gloves -->
+		<!-- Sealed Avadon Gloves -->
 		<ingredient count="1" id="2464" />
 		<!-- Avadon Gloves - Heavy Armor -->
 		<production count="1" id="5714" />
 	</item>
 	<item>
-		<!-- Avadon Gloves -->
+		<!-- Sealed Avadon Gloves -->
 		<ingredient count="1" id="2464" />
 		<!-- Avadon Gloves - Light Armor -->
 		<production count="1" id="5715" />
 	</item>
 	<item>
-		<!-- Avadon Gloves -->
+		<!-- Sealed Avadon Gloves -->
 		<ingredient count="1" id="2464" />
 		<!-- Avadon Gloves - Robe -->
 		<production count="1" id="5716" />
 	</item>
 	<item>
-		<!-- Blue Wolf Gloves -->
+		<!-- Sealed Blue Wolf Gloves -->
 		<ingredient count="1" id="2487" />
 		<!-- Blue Wolf Gloves - Heavy Armor -->
 		<production count="1" id="5718" />
 	</item>
 	<item>
-		<!-- Blue Wolf Gloves -->
+		<!-- Sealed Blue Wolf Gloves -->
 		<ingredient count="1" id="2487" />
 		<!-- Blue Wolf Gloves - Light Armor -->
 		<production count="1" id="5719" />
 	</item>
 	<item>
-		<!-- Blue Wolf Gloves -->
+		<!-- Sealed Blue Wolf Gloves -->
 		<ingredient count="1" id="2487" />
 		<!-- Blue Wolf Gloves - Robe -->
 		<production count="1" id="5720" />
 	</item>
 	<item>
-		<!-- Doom Gloves -->
+		<!-- Sealed Doom Gloves -->
 		<ingredient count="1" id="2475" />
 		<!-- Doom Gloves - Heavy Armor -->
 		<production count="1" id="5722" />
 	</item>
 	<item>
-		<!-- Doom Gloves -->
+		<!-- Sealed Doom Gloves -->
 		<ingredient count="1" id="2475" />
 		<!-- Doom Gloves - Light Armor -->
 		<production count="1" id="5723" />
 	</item>
 	<item>
-		<!-- Doom Gloves -->
+		<!-- Sealed Doom Gloves -->
 		<ingredient count="1" id="2475" />
 		<!-- Doom Gloves - Robe -->
 		<production count="1" id="5724" />
 	</item>
 	<item>
-		<!-- Zubei's Boots -->
+		<!-- Sealed Zubei's Boots -->
 		<ingredient count="1" id="554" />
 		<!-- Zubei's Boots - Heavy Armor -->
 		<production count="1" id="5726" />
 	</item>
 	<item>
-		<!-- Zubei's Boots -->
+		<!-- Sealed Zubei's Boots -->
 		<ingredient count="1" id="554" />
 		<!-- Zubei's Boots - Light Armor -->
 		<production count="1" id="5727" />
 	</item>
 	<item>
-		<!-- Zubei's Boots -->
+		<!-- Sealed Zubei's Boots -->
 		<ingredient count="1" id="554" />
 		<!-- Zubei's Boots - Robe -->
 		<production count="1" id="5728" />
 	</item>
 	<item>
-		<!-- Avadon Boots -->
+		<!-- Sealed Avadon Boots -->
 		<ingredient count="1" id="600" />
 		<!-- Avadon Boots - Heavy Armor -->
 		<production count="1" id="5730" />
 	</item>
 	<item>
-		<!-- Avadon Boots -->
+		<!-- Sealed Avadon Boots -->
 		<ingredient count="1" id="600" />
 		<!-- Avadon Boots - Light Armor -->
 		<production count="1" id="5731" />
 	</item>
 	<item>
-		<!-- Avadon Boots -->
+		<!-- Sealed Avadon Boots -->
 		<ingredient count="1" id="600" />
 		<!-- Avadon Boots - Robe -->
 		<production count="1" id="5732" />
 	</item>
 	<item>
-		<!-- Blue Wolf Boots -->
+		<!-- Sealed Blue Wolf Boots -->
 		<ingredient count="1" id="2439" />
 		<!-- Blue Wolf Boots - Heavy Armor -->
 		<production count="1" id="5734" />
 	</item>
 	<item>
-		<!-- Blue Wolf Boots -->
+		<!-- Sealed Blue Wolf Boots -->
 		<ingredient count="1" id="2439" />
 		<!-- Blue Wolf Boots - Light Armor -->
 		<production count="1" id="5735" />
 	</item>
 	<item>
-		<!-- Blue Wolf Boots -->
+		<!-- Sealed Blue Wolf Boots -->
 		<ingredient count="1" id="2439" />
 		<!-- Blue Wolf Boots - Robe -->
 		<production count="1" id="5736" />
 	</item>
 	<item>
-		<!-- Boots of Doom -->
+		<!-- Sealed Doom Boots -->
 		<ingredient count="1" id="601" />
 		<!-- Doom Boots - Heavy Armor -->
 		<production count="1" id="5738" />
 	</item>
 	<item>
-		<!-- Boots of Doom -->
+		<!-- Sealed Doom Boots -->
 		<ingredient count="1" id="601" />
 		<!-- Doom Boots - Light Armor -->
 		<production count="1" id="5739" />
 	</item>
 	<item>
-		<!-- Boots of Doom -->
+		<!-- Sealed Doom Boots -->
 		<ingredient count="1" id="601" />
 		<!-- Doom Boots - Robe -->
 		<production count="1" id="5740" />
@@ -147,7 +147,7 @@
 	<item>
 		<!-- Sealed Zubei's Gauntlet -->
 		<ingredient count="1" id="11349" />
-		<!-- Zubei's Gauntlet - Heavy Armor Use -->
+		<!-- Zubei's Gauntlet - Heavy Armor -->
 		<production count="1" id="11356" />
 	</item>
 	<item>
@@ -159,13 +159,13 @@
 	<item>
 		<!-- Sealed Zubei's Gauntlet -->
 		<ingredient count="1" id="11349" />
-		<!-- Zubei's Gauntlet - Robe Use -->
+		<!-- Zubei's Gauntlet - Robe -->
 		<production count="1" id="11358" />
 	</item>
 	<item>
 		<!-- Sealed Zubei's Boots -->
 		<ingredient count="1" id="11350" />
-		<!-- Zubei's Boots - Heavy Armor Use -->
+		<!-- Zubei's Boots - Heavy Armor -->
 		<production count="1" id="11359" />
 	</item>
 	<item>
@@ -177,13 +177,13 @@
 	<item>
 		<!-- Sealed Zubei's Boots -->
 		<ingredient count="1" id="11350" />
-		<!-- Zubei's Boots - Robe Use -->
+		<!-- Zubei's Boots - Robe -->
 		<production count="1" id="11361" />
 	</item>
 	<item>
 		<!-- Sealed Avadon Gloves -->
 		<ingredient count="1" id="11351" />
-		<!-- Avadon Gloves - Heavy Armor Use -->
+		<!-- Avadon Gloves - Heavy Armor -->
 		<production count="1" id="11365" />
 	</item>
 	<item>
@@ -195,13 +195,13 @@
 	<item>
 		<!-- Sealed Avadon Gloves -->
 		<ingredient count="1" id="11351" />
-		<!-- Avadon Gloves - Robe Use -->
+		<!-- Avadon Gloves - Robe -->
 		<production count="1" id="11367" />
 	</item>
 	<item>
 		<!-- Sealed Avadon Boots -->
 		<ingredient count="1" id="11352" />
-		<!-- Avadon Boots - Heavy Armor Use -->
+		<!-- Avadon Boots - Heavy Armor -->
 		<production count="1" id="11370" />
 	</item>
 	<item>
@@ -213,13 +213,13 @@
 	<item>
 		<!-- Sealed Avadon Boots -->
 		<ingredient count="1" id="11352" />
-		<!-- Avadon Boots - Robe Use -->
+		<!-- Avadon Boots - Robe -->
 		<production count="1" id="11372" />
 	</item>
 	<item>
 		<!-- Sealed Doom Gloves -->
 		<ingredient count="1" id="11389" />
-		<!-- Doom Gloves - Heavy Armor Use -->
+		<!-- Doom Gloves - Heavy Armor -->
 		<production count="1" id="11379" />
 	</item>
 	<item>
@@ -231,31 +231,31 @@
 	<item>
 		<!-- Sealed Doom Gloves -->
 		<ingredient count="1" id="11389" />
-		<!-- Doom Gloves - Robe Use -->
+		<!-- Doom Gloves - Robe -->
 		<production count="1" id="11381" />
 	</item>
 	<item>
-		<!-- Sealed Boots of Doom -->
+		<!-- Sealed Doom Boots -->
 		<ingredient count="1" id="11390" />
-		<!-- Doom Boots - Heavy Armor Use -->
+		<!-- Doom Boots - Heavy Armor -->
 		<production count="1" id="11382" />
 	</item>
 	<item>
-		<!-- Sealed Boots of Doom -->
+		<!-- Sealed Doom Boots -->
 		<ingredient count="1" id="11390" />
 		<!-- Doom Boots - Light Armor Use -->
 		<production count="1" id="11383" />
 	</item>
 	<item>
-		<!-- Sealed Boots of Doom -->
+		<!-- Sealed Doom Boots -->
 		<ingredient count="1" id="11390" />
-		<!-- Doom Boots - Robe Use -->
+		<!-- Doom Boots - Robe -->
 		<production count="1" id="11384" />
 	</item>
 	<item>
 		<!-- Sealed Blue Wolf Gloves -->
 		<ingredient count="1" id="11392" />
-		<!-- Blue Wolf Gloves - Heavy Armor Use -->
+		<!-- Blue Wolf Gloves - Heavy Armor -->
 		<production count="1" id="11399" />
 	</item>
 	<item>
@@ -267,13 +267,13 @@
 	<item>
 		<!-- Sealed Blue Wolf Gloves -->
 		<ingredient count="1" id="11392" />
-		<!-- Blue Wolf Gloves - Robe Use -->
+		<!-- Blue Wolf Gloves - Robe -->
 		<production count="1" id="11401" />
 	</item>
 	<item>
 		<!-- Sealed Blue Wolf Boots -->
 		<ingredient count="1" id="11391" />
-		<!-- Blue Wolf Boots - Heavy Armor Use -->
+		<!-- Blue Wolf Boots - Heavy Armor -->
 		<production count="1" id="11396" />
 	</item>
 	<item>
@@ -285,13 +285,13 @@
 	<item>
 		<!-- Sealed Blue Wolf Boots -->
 		<ingredient count="1" id="11391" />
-		<!-- Blue Wolf Boots - Robe Use -->
+		<!-- Blue Wolf Boots - Robe -->
 		<production count="1" id="11398" />
 	</item>
 	<item>
 		<!-- Common Item - Sealed Zubei's Gauntlet -->
 		<ingredient count="1" id="12146" />
-		<!-- Common Item - Zubei's Gauntlet - Heavy Armor Use -->
+		<!-- Common Item - Zubei's Gauntlet - Heavy Armor -->
 		<production count="1" id="12153" />
 	</item>
 	<item>
@@ -303,13 +303,13 @@
 	<item>
 		<!-- Common Item - Sealed Zubei's Gauntlet -->
 		<ingredient count="1" id="12146" />
-		<!-- Common Item - Zubei's Gauntlet - Robe Use -->
+		<!-- Common Item - Zubei's Gauntlet - Robe -->
 		<production count="1" id="12155" />
 	</item>
 	<item>
 		<!-- Common Item - Sealed Avadon Gloves -->
 		<ingredient count="1" id="12148" />
-		<!-- Common Item - Avadon Gloves - Heavy Armor Use -->
+		<!-- Common Item - Avadon Gloves - Heavy Armor -->
 		<production count="1" id="12162" />
 	</item>
 	<item>
@@ -321,13 +321,13 @@
 	<item>
 		<!-- Common Item - Sealed Avadon Gloves -->
 		<ingredient count="1" id="12148" />
-		<!-- Common Item - Avadon Gloves - Robe Use -->
+		<!-- Common Item - Avadon Gloves - Robe -->
 		<production count="1" id="12164" />
 	</item>
 	<item>
 		<!-- Common Item - Sealed Blue Wolf Gloves -->
 		<ingredient count="1" id="12190" />
-		<!-- Common Item - Blue Wolf Gloves - Heavy Armor Use -->
+		<!-- Common Item - Blue Wolf Gloves - Heavy Armor -->
 		<production count="1" id="12198" />
 	</item>
 	<item>
@@ -339,13 +339,13 @@
 	<item>
 		<!-- Common Item - Sealed Blue Wolf Gloves -->
 		<ingredient count="1" id="12190" />
-		<!-- Common Item - Blue Wolf Gloves - Robe Use -->
+		<!-- Common Item - Blue Wolf Gloves - Robe -->
 		<production count="1" id="12200" />
 	</item>
 	<item>
 		<!-- Common Item - Sealed Doom Gloves -->
 		<ingredient count="1" id="12187" />
-		<!-- Common Item - Doom Gloves - Heavy Armor Use -->
+		<!-- Common Item - Doom Gloves - Heavy Armor -->
 		<production count="1" id="12177" />
 	</item>
 	<item>
@@ -357,13 +357,13 @@
 	<item>
 		<!-- Common Item - Sealed Doom Gloves -->
 		<ingredient count="1" id="12187" />
-		<!-- Common Item - Doom Gloves - Robe Use -->
+		<!-- Common Item - Doom Gloves - Robe -->
 		<production count="1" id="12179" />
 	</item>
 	<item>
 		<!-- Common Item - Sealed Zubei's Boots -->
 		<ingredient count="1" id="12147" />
-		<!-- Common Item - Zubei's Boots - Heavy Armor Use -->
+		<!-- Common Item - Zubei's Boots - Heavy Armor -->
 		<production count="1" id="12156" />
 	</item>
 	<item>
@@ -375,13 +375,13 @@
 	<item>
 		<!-- Common Item - Sealed Zubei's Boots -->
 		<ingredient count="1" id="12147" />
-		<!-- Common Item - Zubei's Boots - Robe Use -->
+		<!-- Common Item - Zubei's Boots - Robe -->
 		<production count="1" id="12158" />
 	</item>
 	<item>
 		<!-- Common Item - Sealed Avadon Boots -->
 		<ingredient count="1" id="12149" />
-		<!-- Common Item - Avadon Boots - Heavy Armor Use -->
+		<!-- Common Item - Avadon Boots - Heavy Armor -->
 		<production count="1" id="12167" />
 	</item>
 	<item>
@@ -393,13 +393,13 @@
 	<item>
 		<!-- Common Item - Sealed Avadon Boots -->
 		<ingredient count="1" id="12149" />
-		<!-- Common Item - Avadon Boots - Robe Use -->
+		<!-- Common Item - Avadon Boots - Robe -->
 		<production count="1" id="12169" />
 	</item>
 	<item>
 		<!-- Common Item - Sealed Blue Wolf Boots -->
 		<ingredient count="1" id="12189" />
-		<!-- Common Item - Blue Wolf Boots - Heavy Armor Use -->
+		<!-- Common Item - Blue Wolf Boots - Heavy Armor -->
 		<production count="1" id="12195" />
 	</item>
 	<item>
@@ -411,13 +411,13 @@
 	<item>
 		<!-- Common Item - Sealed Blue Wolf Boots -->
 		<ingredient count="1" id="12189" />
-		<!-- Common Item - Blue Wolf Boots - Robe Use -->
+		<!-- Common Item - Blue Wolf Boots - Robe -->
 		<production count="1" id="12197" />
 	</item>
 	<item>
 		<!-- Common Item - Sealed Doom Boots -->
 		<ingredient count="1" id="12188" />
-		<!-- Common Item - Doom Boots - Heavy Armor Use -->
+		<!-- Common Item - Doom Boots - Heavy Armor -->
 		<production count="1" id="12180" />
 	</item>
 	<item>
@@ -429,7 +429,7 @@
 	<item>
 		<!-- Common Item - Sealed Doom Boots -->
 		<ingredient count="1" id="12188" />
-		<!-- Common Item - Doom Boots - Robe Use -->
+		<!-- Common Item - Doom Boots - Robe -->
 		<production count="1" id="12182" />
 	</item>
 </list>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/1003.xml b/L2J_DataPack_BETA/dist/game/data/multisell/1003.xml
index fad4b4ec24d44b7e8c2422978018ddd50e6596d3..f26b75086a24175adae3c746d04d3838c56018d8 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/1003.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/1003.xml
@@ -1,151 +1,151 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Zubei's Gauntlets - Heavy Armor -->
 		<ingredient count="1" id="5710" />
-		<!-- Zubei's Gauntlets -->
+		<!-- Sealed Zubei's Gauntlets -->
 		<production count="1" id="612" />
 	</item>
 	<item>
 		<!-- Zubei's Gauntlets - Light Armor -->
 		<ingredient count="1" id="5711" />
-		<!-- Zubei's Gauntlets -->
+		<!-- Sealed Zubei's Gauntlets -->
 		<production count="1" id="612" />
 	</item>
 	<item>
 		<!-- Zubei's Gauntlets - Robe -->
 		<ingredient count="1" id="5712" />
-		<!-- Zubei's Gauntlets -->
+		<!-- Sealed Zubei's Gauntlets -->
 		<production count="1" id="612" />
 	</item>
 	<item>
 		<!-- Avadon Gloves - Heavy Armor -->
 		<ingredient count="1" id="5714" />
-		<!-- Avadon Gloves -->
+		<!-- Sealed Avadon Gloves -->
 		<production count="1" id="2464" />
 	</item>
 	<item>
 		<!-- Avadon Gloves - Light Armor -->
 		<ingredient count="1" id="5715" />
-		<!-- Avadon Gloves -->
+		<!-- Sealed Avadon Gloves -->
 		<production count="1" id="2464" />
 	</item>
 	<item>
 		<!-- Avadon Gloves - Robe -->
 		<ingredient count="1" id="5716" />
-		<!-- Avadon Gloves -->
+		<!-- Sealed Avadon Gloves -->
 		<production count="1" id="2464" />
 	</item>
 	<item>
 		<!-- Blue Wolf Gloves - Heavy Armor -->
 		<ingredient count="1" id="5718" />
-		<!-- Blue Wolf Gloves -->
+		<!-- Sealed Blue Wolf Gloves -->
 		<production count="1" id="2487" />
 	</item>
 	<item>
 		<!-- Blue Wolf Gloves - Light Armor -->
 		<ingredient count="1" id="5719" />
-		<!-- Blue Wolf Gloves -->
+		<!-- Sealed Blue Wolf Gloves -->
 		<production count="1" id="2487" />
 	</item>
 	<item>
 		<!-- Blue Wolf Gloves - Robe -->
 		<ingredient count="1" id="5720" />
-		<!-- Blue Wolf Gloves -->
+		<!-- Sealed Blue Wolf Gloves -->
 		<production count="1" id="2487" />
 	</item>
 	<item>
 		<!-- Doom Gloves - Heavy Armor -->
 		<ingredient count="1" id="5722" />
-		<!-- Doom Gloves -->
+		<!-- Sealed Doom Gloves -->
 		<production count="1" id="2475" />
 	</item>
 	<item>
 		<!-- Doom Gloves - Light Armor -->
 		<ingredient count="1" id="5723" />
-		<!-- Doom Gloves -->
+		<!-- Sealed Doom Gloves -->
 		<production count="1" id="2475" />
 	</item>
 	<item>
 		<!-- Doom Gloves - Robe -->
 		<ingredient count="1" id="5724" />
-		<!-- Doom Gloves -->
+		<!-- Sealed Doom Gloves -->
 		<production count="1" id="2475" />
 	</item>
 	<item>
 		<!-- Zubei's Boots - Heavy Armor -->
 		<ingredient count="1" id="5726" />
-		<!-- Zubei's Boots -->
+		<!-- Sealed Zubei's Boots -->
 		<production count="1" id="554" />
 	</item>
 	<item>
 		<!-- Zubei's Boots - Light Armor -->
 		<ingredient count="1" id="5727" />
-		<!-- Zubei's Boots -->
+		<!-- Sealed Zubei's Boots -->
 		<production count="1" id="554" />
 	</item>
 	<item>
 		<!-- Zubei's Boots - Robe -->
 		<ingredient count="1" id="5728" />
-		<!-- Zubei's Boots -->
+		<!-- Sealed Zubei's Boots -->
 		<production count="1" id="554" />
 	</item>
 	<item>
 		<!-- Avadon Boots - Heavy Armor -->
 		<ingredient count="1" id="5730" />
-		<!-- Avadon Boots -->
+		<!-- Sealed Avadon Boots -->
 		<production count="1" id="600" />
 	</item>
 	<item>
 		<!-- Avadon Boots - Light Armor -->
 		<ingredient count="1" id="5731" />
-		<!-- Avadon Boots -->
+		<!-- Sealed Avadon Boots -->
 		<production count="1" id="600" />
 	</item>
 	<item>
 		<!-- Avadon Boots - Robe -->
 		<ingredient count="1" id="5732" />
-		<!-- Avadon Boots -->
+		<!-- Sealed Avadon Boots -->
 		<production count="1" id="600" />
 	</item>
 	<item>
 		<!-- Blue Wolf Boots - Heavy Armor -->
 		<ingredient count="1" id="5734" />
-		<!-- Blue Wolf Boots -->
+		<!-- Sealed Blue Wolf Boots -->
 		<production count="1" id="2439" />
 	</item>
 	<item>
 		<!-- Blue Wolf Boots - Light Armor -->
 		<ingredient count="1" id="5735" />
-		<!-- Blue Wolf Boots -->
+		<!-- Sealed Blue Wolf Boots -->
 		<production count="1" id="2439" />
 	</item>
 	<item>
 		<!-- Blue Wolf Boots - Robe -->
 		<ingredient count="1" id="5736" />
-		<!-- Blue Wolf Boots -->
+		<!-- Sealed Blue Wolf Boots -->
 		<production count="1" id="2439" />
 	</item>
 	<item>
 		<!-- Doom Boots - Heavy Armor -->
 		<ingredient count="1" id="5738" />
-		<!-- Boots of Doom -->
+		<!-- Sealed Doom Boots -->
 		<production count="1" id="601" />
 	</item>
 	<item>
 		<!-- Doom Boots - Light Armor -->
 		<ingredient count="1" id="5739" />
-		<!-- Boots of Doom -->
+		<!-- Sealed Doom Boots -->
 		<production count="1" id="601" />
 	</item>
 	<item>
 		<!-- Doom Boots - Robe -->
 		<ingredient count="1" id="5740" />
-		<!-- Boots of Doom -->
+		<!-- Sealed Doom Boots -->
 		<production count="1" id="601" />
 	</item>
 	<item>
-		<!-- Zubei's Gauntlet - Heavy Armor Use -->
+		<!-- Zubei's Gauntlet - Heavy Armor -->
 		<ingredient count="1" id="11356" />
 		<!-- Sealed Zubei's Gauntlet -->
 		<production count="1" id="11349" />
@@ -157,13 +157,13 @@
 		<production count="1" id="11349" />
 	</item>
 	<item>
-		<!-- Zubei's Gauntlet - Robe Use -->
+		<!-- Zubei's Gauntlet - Robe -->
 		<ingredient count="1" id="11358" />
 		<!-- Sealed Zubei's Gauntlet -->
 		<production count="1" id="11349" />
 	</item>
 	<item>
-		<!-- Zubei's Boots - Heavy Armor Use -->
+		<!-- Zubei's Boots - Heavy Armor -->
 		<ingredient count="1" id="11359" />
 		<!-- Sealed Zubei's Boots -->
 		<production count="1" id="11350" />
@@ -175,13 +175,13 @@
 		<production count="1" id="11350" />
 	</item>
 	<item>
-		<!-- Zubei's Boots - Robe Use -->
+		<!-- Zubei's Boots - Robe -->
 		<ingredient count="1" id="11361" />
 		<!-- Sealed Zubei's Boots -->
 		<production count="1" id="11350" />
 	</item>
 	<item>
-		<!-- Avadon Gloves - Heavy Armor Use -->
+		<!-- Avadon Gloves - Heavy Armor -->
 		<ingredient count="1" id="11365" />
 		<!-- Sealed Avadon Gloves -->
 		<production count="1" id="11351" />
@@ -193,13 +193,13 @@
 		<production count="1" id="11351" />
 	</item>
 	<item>
-		<!-- Avadon Gloves - Robe Use -->
+		<!-- Avadon Gloves - Robe -->
 		<ingredient count="1" id="11367" />
 		<!-- Sealed Avadon Gloves -->
 		<production count="1" id="11351" />
 	</item>
 	<item>
-		<!-- Avadon Boots - Heavy Armor Use -->
+		<!-- Avadon Boots - Heavy Armor -->
 		<ingredient count="1" id="11370" />
 		<!-- Sealed Avadon Boots -->
 		<production count="1" id="11352" />
@@ -211,13 +211,13 @@
 		<production count="1" id="11352" />
 	</item>
 	<item>
-		<!-- Avadon Boots - Robe Use -->
+		<!-- Avadon Boots - Robe -->
 		<ingredient count="1" id="11372" />
 		<!-- Sealed Avadon Boots -->
 		<production count="1" id="11352" />
 	</item>
 	<item>
-		<!-- Doom Gloves - Heavy Armor Use -->
+		<!-- Doom Gloves - Heavy Armor -->
 		<ingredient count="1" id="11379" />
 		<!-- Sealed Doom Gloves -->
 		<production count="1" id="11389" />
@@ -229,31 +229,31 @@
 		<production count="1" id="11389" />
 	</item>
 	<item>
-		<!-- Doom Gloves - Robe Use -->
+		<!-- Doom Gloves - Robe -->
 		<ingredient count="1" id="11381" />
 		<!-- Sealed Doom Gloves -->
 		<production count="1" id="11389" />
 	</item>
 	<item>
-		<!-- Doom Boots - Heavy Armor Use -->
+		<!-- Doom Boots - Heavy Armor -->
 		<ingredient count="1" id="11382" />
-		<!-- Sealed Boots of Doom -->
+		<!-- Sealed Doom Boots -->
 		<production count="1" id="11390" />
 	</item>
 	<item>
 		<!-- Doom Boots - Light Armor Use -->
 		<ingredient count="1" id="11383" />
-		<!-- Sealed Boots of Doom -->
+		<!-- Sealed Doom Boots -->
 		<production count="1" id="11390" />
 	</item>
 	<item>
-		<!-- Doom Boots - Robe Use -->
+		<!-- Doom Boots - Robe -->
 		<ingredient count="1" id="11384" />
-		<!-- Sealed Boots of Doom -->
+		<!-- Sealed Doom Boots -->
 		<production count="1" id="11390" />
 	</item>
 	<item>
-		<!-- Blue Wolf Gloves - Heavy Armor Use -->
+		<!-- Blue Wolf Gloves - Heavy Armor -->
 		<ingredient count="1" id="11399" />
 		<!-- Sealed Blue Wolf Gloves -->
 		<production count="1" id="11392" />
@@ -265,13 +265,13 @@
 		<production count="1" id="11392" />
 	</item>
 	<item>
-		<!-- Blue Wolf Gloves - Robe Use -->
+		<!-- Blue Wolf Gloves - Robe -->
 		<ingredient count="1" id="11401" />
 		<!-- Sealed Blue Wolf Gloves -->
 		<production count="1" id="11392" />
 	</item>
 	<item>
-		<!-- Blue Wolf Boots - Heavy Armor Use -->
+		<!-- Blue Wolf Boots - Heavy Armor -->
 		<ingredient count="1" id="11396" />
 		<!-- Sealed Blue Wolf Boots -->
 		<production count="1" id="11391" />
@@ -283,13 +283,13 @@
 		<production count="1" id="11391" />
 	</item>
 	<item>
-		<!-- Blue Wolf Boots - Robe Use -->
+		<!-- Blue Wolf Boots - Robe -->
 		<ingredient count="1" id="11398" />
 		<!-- Sealed Blue Wolf Boots -->
 		<production count="1" id="11391" />
 	</item>
 	<item>
-		<!-- Common Item - Zubei's Gauntlet - Heavy Armor Use -->
+		<!-- Common Item - Zubei's Gauntlet - Heavy Armor -->
 		<ingredient count="1" id="12153" />
 		<!-- Common Item - Sealed Zubei's Gauntlet -->
 		<production count="1" id="12146" />
@@ -301,13 +301,13 @@
 		<production count="1" id="12146" />
 	</item>
 	<item>
-		<!-- Common Item - Zubei's Gauntlet - Robe Use -->
+		<!-- Common Item - Zubei's Gauntlet - Robe -->
 		<ingredient count="1" id="12155" />
 		<!-- Common Item - Sealed Zubei's Gauntlet -->
 		<production count="1" id="12146" />
 	</item>
 	<item>
-		<!-- Common Item - Avadon Gloves - Heavy Armor Use -->
+		<!-- Common Item - Avadon Gloves - Heavy Armor -->
 		<ingredient count="1" id="12162" />
 		<!-- Common Item - Sealed Avadon Gloves -->
 		<production count="1" id="12148" />
@@ -319,13 +319,13 @@
 		<production count="1" id="12148" />
 	</item>
 	<item>
-		<!-- Common Item - Avadon Gloves - Robe Use -->
+		<!-- Common Item - Avadon Gloves - Robe -->
 		<ingredient count="1" id="12164" />
 		<!-- Common Item - Sealed Avadon Gloves -->
 		<production count="1" id="12148" />
 	</item>
 	<item>
-		<!-- Common Item - Blue Wolf Gloves - Heavy Armor Use -->
+		<!-- Common Item - Blue Wolf Gloves - Heavy Armor -->
 		<ingredient count="1" id="12198" />
 		<!-- Common Item - Sealed Blue Wolf Gloves -->
 		<production count="1" id="12190" />
@@ -337,13 +337,13 @@
 		<production count="1" id="12190" />
 	</item>
 	<item>
-		<!-- Common Item - Blue Wolf Gloves - Robe Use -->
+		<!-- Common Item - Blue Wolf Gloves - Robe -->
 		<ingredient count="1" id="12200" />
 		<!-- Common Item - Sealed Blue Wolf Gloves -->
 		<production count="1" id="12190" />
 	</item>
 	<item>
-		<!-- Common Item - Doom Gloves - Heavy Armor Use -->
+		<!-- Common Item - Doom Gloves - Heavy Armor -->
 		<ingredient count="1" id="12177" />
 		<!-- Common Item - Sealed Doom Gloves -->
 		<production count="1" id="12187" />
@@ -355,13 +355,13 @@
 		<production count="1" id="12187" />
 	</item>
 	<item>
-		<!-- Common Item - Doom Gloves - Robe Use -->
+		<!-- Common Item - Doom Gloves - Robe -->
 		<ingredient count="1" id="12179" />
 		<!-- Common Item - Sealed Doom Gloves -->
 		<production count="1" id="12187" />
 	</item>
 	<item>
-		<!-- Common Item - Zubei's Boots - Heavy Armor Use -->
+		<!-- Common Item - Zubei's Boots - Heavy Armor -->
 		<ingredient count="1" id="12156" />
 		<!-- Common Item - Sealed Zubei's Boots -->
 		<production count="1" id="12147" />
@@ -373,13 +373,13 @@
 		<production count="1" id="12147" />
 	</item>
 	<item>
-		<!-- Common Item - Zubei's Boots - Robe Use -->
+		<!-- Common Item - Zubei's Boots - Robe -->
 		<ingredient count="1" id="12158" />
 		<!-- Common Item - Sealed Zubei's Boots -->
 		<production count="1" id="12147" />
 	</item>
 	<item>
-		<!-- Common Item - Avadon Boots - Heavy Armor Use -->
+		<!-- Common Item - Avadon Boots - Heavy Armor -->
 		<ingredient count="1" id="12167" />
 		<!-- Common Item - Sealed Avadon Boots -->
 		<production count="1" id="12149" />
@@ -391,13 +391,13 @@
 		<production count="1" id="12149" />
 	</item>
 	<item>
-		<!-- Common Item - Avadon Boots - Robe Use -->
+		<!-- Common Item - Avadon Boots - Robe -->
 		<ingredient count="1" id="12169" />
 		<!-- Common Item - Sealed Avadon Boots -->
 		<production count="1" id="12149" />
 	</item>
 	<item>
-		<!-- Common Item - Blue Wolf Boots - Heavy Armor Use -->
+		<!-- Common Item - Blue Wolf Boots - Heavy Armor -->
 		<ingredient count="1" id="12195" />
 		<!-- Common Item - Sealed Blue Wolf Boots -->
 		<production count="1" id="12189" />
@@ -409,13 +409,13 @@
 		<production count="1" id="12189" />
 	</item>
 	<item>
-		<!-- Common Item - Blue Wolf Boots - Robe Use -->
+		<!-- Common Item - Blue Wolf Boots - Robe -->
 		<ingredient count="1" id="12197" />
 		<!-- Common Item - Sealed Blue Wolf Boots -->
 		<production count="1" id="12189" />
 	</item>
 	<item>
-		<!-- Common Item - Doom Boots - Heavy Armor Use -->
+		<!-- Common Item - Doom Boots - Heavy Armor -->
 		<ingredient count="1" id="12180" />
 		<!-- Common Item - Sealed Doom Boots -->
 		<production count="1" id="12188" />
@@ -427,7 +427,7 @@
 		<production count="1" id="12188" />
 	</item>
 	<item>
-		<!-- Common Item - Doom Boots - Robe Use -->
+		<!-- Common Item - Doom Boots - Robe -->
 		<ingredient count="1" id="12182" />
 		<!-- Common Item - Sealed Doom Boots -->
 		<production count="1" id="12188" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/1004.xml b/L2J_DataPack_BETA/dist/game/data/multisell/1004.xml
index 83aca17c1754ae48091398deb5564f826cd576c7..e0f5143244cb6a58da62598af708d3642065787f 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/1004.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/1004.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Recipe: Braided Hemp -->
 		<ingredient count="1" id="2135" maintainIngredient="true" />
@@ -81,7 +81,7 @@
 		<production count="20" id="1884" />
 	</item>
 	<item>
-		<!-- Recipe: High Grade Suede -->
+		<!-- Recipe: High-Grade Suede -->
 		<ingredient count="1" id="2140" maintainIngredient="true" />
 		<!-- Coarse Bone Powder -->
 		<ingredient count="1" id="1881" />
@@ -89,7 +89,7 @@
 		<ingredient count="3" id="1866" />
 		<!-- Adena -->
 		<ingredient count="2400" id="57" isTaxIngredient="true" />
-		<!-- High Grade Suede -->
+		<!-- High-Grade Suede -->
 		<production count="1" id="1885" />
 	</item>
 	<item>
@@ -273,7 +273,7 @@
 		<ingredient count="15" id="1877" />
 		<!-- Adena -->
 		<ingredient count="242760" id="57" isTaxIngredient="true" />
-		<!-- Leolin's Mold -->
+		<!-- Reorin's Mold -->
 		<production count="1" id="5551" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/1005.xml b/L2J_DataPack_BETA/dist/game/data/multisell/1005.xml
index a1d030a73d9ced284807edbcce4aa9c55af2cd06..a756b4d8da4b81aa0f998e91b00860939c9a1d4c 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/1005.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/1005.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list applyTaxes="true" maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list maintainEnchantment="true" applyTaxes="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Stormbringer -->
 		<ingredient count="1" id="72" />
@@ -93,7 +93,7 @@
 		<ingredient count="97" id="2131" />
 		<!-- Adena -->
 		<ingredient count="291000" id="57" isTaxIngredient="true" />
-		<!-- Big Hammer - Rsk.Focus -->
+		<!-- Big Hammer - Rsk. Focus -->
 		<production count="1" id="4727" />
 	</item>
 	<item>
@@ -129,7 +129,7 @@
 		<ingredient count="97" id="2131" />
 		<!-- Adena -->
 		<ingredient count="291000" id="57" isTaxIngredient="true" />
-		<!-- Battle Axe - Rsk.Focus -->
+		<!-- Battle Axe - Rsk. Focus -->
 		<production count="1" id="4730" />
 	</item>
 	<item>
@@ -165,7 +165,7 @@
 		<ingredient count="97" id="2131" />
 		<!-- Adena -->
 		<ingredient count="291000" id="57" isTaxIngredient="true" />
-		<!-- Silver Axe - Rsk.Focus -->
+		<!-- Silver Axe - Rsk. Focus -->
 		<production count="1" id="4733" />
 	</item>
 	<item>
@@ -213,7 +213,7 @@
 		<ingredient count="97" id="2131" />
 		<!-- Adena -->
 		<ingredient count="291000" id="57" isTaxIngredient="true" />
-		<!-- Skull Graver - Rsk.Focus -->
+		<!-- Skull Graver - Rsk. Focus -->
 		<production count="1" id="4737" />
 	</item>
 	<item>
@@ -945,7 +945,7 @@
 		<ingredient count="238" id="2131" />
 		<!-- Adena -->
 		<ingredient count="714000" id="57" isTaxIngredient="true" />
-		<!-- Elven Bow of Nobility - Evasion -->
+		<!-- Noble Elven Bow - Evasion -->
 		<production count="1" id="4816" />
 	</item>
 	<item>
@@ -957,7 +957,7 @@
 		<ingredient count="238" id="2131" />
 		<!-- Adena -->
 		<ingredient count="714000" id="57" isTaxIngredient="true" />
-		<!-- Elven Bow of Nobility - Miser -->
+		<!-- Noble Elven Bow - Miser -->
 		<production count="1" id="4817" />
 	</item>
 	<item>
@@ -969,7 +969,7 @@
 		<ingredient count="238" id="2131" />
 		<!-- Adena -->
 		<ingredient count="714000" id="57" isTaxIngredient="true" />
-		<!-- Elven Bow of Nobility - Cheap Shot -->
+		<!-- Noble Elven Bow - Cheap Shot -->
 		<production count="1" id="4818" />
 	</item>
 	<item>
@@ -1065,7 +1065,7 @@
 		<ingredient count="306" id="2131" />
 		<!-- Adena -->
 		<ingredient count="918000" id="57" isTaxIngredient="true" />
-		<!-- Stick of Eternity - Rsk., Evasion -->
+		<!-- Stick of Eternity - Rsk. Evasion -->
 		<production count="1" id="7705" />
 	</item>
 	<item>
@@ -1101,7 +1101,7 @@
 		<ingredient count="306" id="2131" />
 		<!-- Adena -->
 		<ingredient count="918000" id="57" isTaxIngredient="true" />
-		<!-- Nirvana Axe - Magic Power -->
+		<!-- Nirvana Axe - M. Atk. -->
 		<production count="1" id="7707" />
 	</item>
 	<item>
@@ -1137,7 +1137,7 @@
 		<ingredient count="306" id="2131" />
 		<!-- Adena -->
 		<ingredient count="918000" id="57" isTaxIngredient="true" />
-		<!-- Club of Nature - Magic Mental Shield -->
+		<!-- Club of Nature - Mental Shield -->
 		<production count="1" id="7711" />
 	</item>
 	<item>
@@ -1153,7 +1153,7 @@
 		<production count="1" id="7710" />
 	</item>
 	<item>
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<ingredient count="1" id="202" />
 		<!-- Red Soul Crystal - Stage 7 -->
 		<ingredient count="1" id="4636" />
@@ -1161,11 +1161,11 @@
 		<ingredient count="306" id="2131" />
 		<!-- Adena -->
 		<ingredient count="918000" id="57" isTaxIngredient="true" />
-		<!-- Mace of the Underworld - Mana Up -->
+		<!-- Mace of Underworld - Mana Up -->
 		<production count="1" id="7713" />
 	</item>
 	<item>
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<ingredient count="1" id="202" />
 		<!-- Green Soul Crystal - Stage 7 -->
 		<ingredient count="1" id="4647" />
@@ -1173,11 +1173,11 @@
 		<ingredient count="306" id="2131" />
 		<!-- Adena -->
 		<ingredient count="918000" id="57" isTaxIngredient="true" />
-		<!-- Mace of the Underworld - Magic Silence -->
+		<!-- Mace of Underworld - Magic Silence -->
 		<production count="1" id="7714" />
 	</item>
 	<item>
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<ingredient count="1" id="202" />
 		<!-- Blue Soul Crystal - Stage 7 -->
 		<ingredient count="1" id="4658" />
@@ -1185,7 +1185,7 @@
 		<ingredient count="306" id="2131" />
 		<!-- Adena -->
 		<ingredient count="918000" id="57" isTaxIngredient="true" />
-		<!-- Mace of the Underworld - Conversion -->
+		<!-- Mace of Underworld - Conversion -->
 		<production count="1" id="7715" />
 	</item>
 	<item>
@@ -2593,7 +2593,7 @@
 		<production count="1" id="4755" />
 	</item>
 	<item>
-		<!-- Demon Dagger -->
+		<!-- Demon's Dagger -->
 		<ingredient count="1" id="234" />
 		<!-- Red Soul Crystal - Stage 10 -->
 		<ingredient count="1" id="4639" />
@@ -2601,11 +2601,11 @@
 		<ingredient count="339" id="2132" />
 		<!-- Adena -->
 		<ingredient count="3390000" id="57" isTaxIngredient="true" />
-		<!-- Demon Dagger - Critical Bleed -->
+		<!-- Demon's Dagger - Critical Bleed -->
 		<production count="1" id="4780" />
 	</item>
 	<item>
-		<!-- Demon Dagger -->
+		<!-- Demon's Dagger -->
 		<ingredient count="1" id="234" />
 		<!-- Green Soul Crystal - Stage 10 -->
 		<ingredient count="1" id="4650" />
@@ -2613,11 +2613,11 @@
 		<ingredient count="339" id="2132" />
 		<!-- Adena -->
 		<ingredient count="3390000" id="57" isTaxIngredient="true" />
-		<!-- Demon Dagger - Critical Poison -->
+		<!-- Demon's Dagger - Critical Poison -->
 		<production count="1" id="4781" />
 	</item>
 	<item>
-		<!-- Demon Dagger -->
+		<!-- Demon's Dagger -->
 		<ingredient count="1" id="234" />
 		<!-- Blue Soul Crystal - Stage 10 -->
 		<ingredient count="1" id="4661" />
@@ -2625,7 +2625,7 @@
 		<ingredient count="339" id="2132" />
 		<!-- Adena -->
 		<ingredient count="3390000" id="57" isTaxIngredient="true" />
-		<!-- Demon Dagger - Critical Damage -->
+		<!-- Demon's Dagger - Critical Damage -->
 		<production count="1" id="6359" />
 	</item>
 	<item>
@@ -2829,7 +2829,7 @@
 		<ingredient count="306" id="2131" />
 		<!-- Adena -->
 		<ingredient count="918000" id="57" isTaxIngredient="true" />
-		<!-- Sword of Whispering Death - Magic Power -->
+		<!-- Sword of Whispering Death - M. Atk. -->
 		<production count="1" id="6311" />
 	</item>
 	<item>
@@ -3009,7 +3009,7 @@
 		<ingredient count="97" id="2131" />
 		<!-- Adena -->
 		<ingredient count="291000" id="57" isTaxIngredient="true" />
-		<!-- Mysterious Sword - Magic Power -->
+		<!-- Mysterious Sword - M. Atk. -->
 		<production count="1" id="8112" />
 	</item>
 	<item>
@@ -3045,7 +3045,7 @@
 		<ingredient count="555" id="2131" />
 		<!-- Adena -->
 		<ingredient count="1665000" id="57" isTaxIngredient="true" />
-		<!-- Ecliptic Sword - Magic Power -->
+		<!-- Ecliptic Sword - M. Atk. -->
 		<production count="1" id="8115" />
 	</item>
 	<item>
@@ -3093,7 +3093,7 @@
 		<ingredient count="339" id="2132" />
 		<!-- Adena -->
 		<ingredient count="3390000" id="57" isTaxIngredient="true" />
-		<!-- Wizard's Tear - Magic Power -->
+		<!-- Wizard's Tear - M. Atk. -->
 		<production count="1" id="8118" />
 	</item>
 	<item>
@@ -3117,7 +3117,7 @@
 		<ingredient count="555" id="2131" />
 		<!-- Adena -->
 		<ingredient count="1665000" id="57" isTaxIngredient="true" />
-		<!-- Ecliptic Axe - Magic Power -->
+		<!-- Ecliptic Axe - M. Atk. -->
 		<production count="1" id="8139" />
 	</item>
 	<item>
@@ -3165,7 +3165,7 @@
 		<ingredient count="222" id="2132" />
 		<!-- Adena -->
 		<ingredient count="2220000" id="57" isTaxIngredient="true" />
-		<!-- Spell Breaker - Magic Mental Shield -->
+		<!-- Spell Breaker - Mental Shield -->
 		<production count="1" id="8142" />
 	</item>
 	<item>
@@ -3465,7 +3465,7 @@
 		<ingredient count="222" id="2132" />
 		<!-- Red Soul Crystal - Stage 9 -->
 		<ingredient count="1" id="4638" />
-		<!-- Hell Knife - Confusion - Magic Mental Shield -->
+		<!-- Hell Knife - Confusion - Mental Shield -->
 		<production count="1" id="10944" />
 	</item>
 	<item>
@@ -3657,7 +3657,7 @@
 		<ingredient count="222" id="2132" />
 		<!-- Green Soul Crystal - Stage 9 -->
 		<ingredient count="1" id="4649" />
-		<!-- Sprite's Staff - Hail - Magic Mental Shield -->
+		<!-- Sprite's Staff - Hail - Mental Shield -->
 		<production count="1" id="10918" />
 	</item>
 	<item>
@@ -3817,7 +3817,7 @@
 		<production count="1" id="10991" />
 	</item>
 	<item>
-		<!-- Demon Dagger - Great Gale -->
+		<!-- Demon's Dagger - Great Gale -->
 		<ingredient count="1" id="10992" />
 		<!-- Adena -->
 		<ingredient count="3390000" id="57" isTaxIngredient="true" />
@@ -3825,11 +3825,11 @@
 		<ingredient count="339" id="2132" />
 		<!-- Red Soul Crystal - Stage 10 -->
 		<ingredient count="1" id="4639" />
-		<!-- Demon Dagger - Great Gale - Critical Bleed -->
+		<!-- Demon's Dagger - Great Gale - Critical Bleed -->
 		<production count="1" id="10993" />
 	</item>
 	<item>
-		<!-- Demon Dagger - Great Gale -->
+		<!-- Demon's Dagger - Great Gale -->
 		<ingredient count="1" id="10992" />
 		<!-- Adena -->
 		<ingredient count="3390000" id="57" isTaxIngredient="true" />
@@ -3837,11 +3837,11 @@
 		<ingredient count="339" id="2132" />
 		<!-- Green Soul Crystal - Stage 10 -->
 		<ingredient count="1" id="4650" />
-		<!-- Demon Dagger - Great Gale - Critical Poison -->
+		<!-- Demon's Dagger - Great Gale - Critical Poison -->
 		<production count="1" id="10994" />
 	</item>
 	<item>
-		<!-- Demon Dagger - Great Gale -->
+		<!-- Demon's Dagger - Great Gale -->
 		<ingredient count="1" id="10992" />
 		<!-- Adena -->
 		<ingredient count="3390000" id="57" isTaxIngredient="true" />
@@ -3849,7 +3849,7 @@
 		<ingredient count="339" id="2132" />
 		<!-- Blue Soul Crystal - Stage 10 -->
 		<ingredient count="1" id="4661" />
-		<!-- Demon Dagger - Great Gale - Critical Damage -->
+		<!-- Demon's Dagger - Great Gale - Critical Damage -->
 		<production count="1" id="10996" />
 	</item>
 	<item>
@@ -3957,7 +3957,7 @@
 		<ingredient count="339" id="2132" />
 		<!-- Blue Soul Crystal - Stage 10 -->
 		<ingredient count="1" id="4661" />
-		<!-- Lance - Earth - Long Blow -->
+		<!-- Lance - Earth - Towering Blow -->
 		<production count="1" id="10970" />
 	</item>
 	<item>
@@ -4017,7 +4017,7 @@
 		<ingredient count="339" id="2132" />
 		<!-- Green Soul Crystal - Stage 10 -->
 		<ingredient count="1" id="4650" />
-		<!-- Wizard's Tear - Cleverness - Magic Power -->
+		<!-- Wizard's Tear - Cleverness - M. Atk. -->
 		<production count="1" id="11007" />
 	</item>
 	<item>
@@ -4065,7 +4065,7 @@
 		<ingredient count="222" id="2132" />
 		<!-- Adena -->
 		<ingredient count="2220000" id="57" isTaxIngredient="true" />
-		<!-- Spell Breaker - Hail - Magic Mental Shield -->
+		<!-- Spell Breaker - Hail - Mental Shield -->
 		<production count="1" id="10900" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/1006.xml b/L2J_DataPack_BETA/dist/game/data/multisell/1006.xml
index 0ae60cbc104c4c62108f00840172907a882464b6..de47fc330bd16919d5566c9a5809148fc9fa811b 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/1006.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/1006.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Stormbringer -->
 		<ingredient count="1" id="72" />
@@ -7,7 +7,7 @@
 		<ingredient count="1" id="75" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="183" id="1459" />
 		<!-- Adena -->
 		<ingredient count="548100" id="57" isTaxIngredient="true" />
@@ -21,7 +21,7 @@
 		<ingredient count="1" id="132" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="183" id="1459" />
 		<!-- Adena -->
 		<ingredient count="548100" id="57" isTaxIngredient="true" />
@@ -35,7 +35,7 @@
 		<ingredient count="1" id="76" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="183" id="1459" />
 		<!-- Adena -->
 		<ingredient count="548100" id="57" isTaxIngredient="true" />
@@ -49,7 +49,7 @@
 		<ingredient count="1" id="134" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="183" id="1459" />
 		<!-- Adena -->
 		<ingredient count="548100" id="57" isTaxIngredient="true" />
@@ -63,7 +63,7 @@
 		<ingredient count="1" id="77" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="183" id="1459" />
 		<!-- Adena -->
 		<ingredient count="548100" id="57" isTaxIngredient="true" />
@@ -77,7 +77,7 @@
 		<ingredient count="1" id="132" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="315" id="1459" />
 		<!-- Adena -->
 		<ingredient count="945000" id="57" isTaxIngredient="true" />
@@ -91,7 +91,7 @@
 		<ingredient count="1" id="76" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="315" id="1459" />
 		<!-- Adena -->
 		<ingredient count="945000" id="57" isTaxIngredient="true" />
@@ -105,7 +105,7 @@
 		<ingredient count="1" id="132" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="315" id="1459" />
 		<!-- Adena -->
 		<ingredient count="945000" id="57" isTaxIngredient="true" />
@@ -119,7 +119,7 @@
 		<ingredient count="1" id="76" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="315" id="1459" />
 		<!-- Adena -->
 		<ingredient count="945000" id="57" isTaxIngredient="true" />
@@ -133,7 +133,7 @@
 		<ingredient count="1" id="132" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="315" id="1459" />
 		<!-- Adena -->
 		<ingredient count="945000" id="57" isTaxIngredient="true" />
@@ -147,7 +147,7 @@
 		<ingredient count="1" id="76" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="315" id="1459" />
 		<!-- Adena -->
 		<ingredient count="945000" id="57" isTaxIngredient="true" />
@@ -161,7 +161,7 @@
 		<ingredient count="1" id="132" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="315" id="1459" />
 		<!-- Adena -->
 		<ingredient count="945000" id="57" isTaxIngredient="true" />
@@ -175,7 +175,7 @@
 		<ingredient count="1" id="76" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="315" id="1459" />
 		<!-- Adena -->
 		<ingredient count="945000" id="57" isTaxIngredient="true" />
@@ -189,7 +189,7 @@
 		<ingredient count="1" id="135" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="124" id="1459" />
 		<!-- Adena -->
 		<ingredient count="372600" id="57" isTaxIngredient="true" />
@@ -203,7 +203,7 @@
 		<ingredient count="1" id="132" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="38" id="1459" />
 		<!-- Adena -->
 		<ingredient count="113400" id="57" isTaxIngredient="true" />
@@ -217,7 +217,7 @@
 		<ingredient count="1" id="76" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="38" id="1459" />
 		<!-- Adena -->
 		<ingredient count="113400" id="57" isTaxIngredient="true" />
@@ -231,7 +231,7 @@
 		<ingredient count="1" id="132" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="38" id="1459" />
 		<!-- Adena -->
 		<ingredient count="113400" id="57" isTaxIngredient="true" />
@@ -245,7 +245,7 @@
 		<ingredient count="1" id="76" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="38" id="1459" />
 		<!-- Adena -->
 		<ingredient count="113400" id="57" isTaxIngredient="true" />
@@ -259,7 +259,7 @@
 		<ingredient count="1" id="134" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="38" id="1459" />
 		<!-- Adena -->
 		<ingredient count="113400" id="57" isTaxIngredient="true" />
@@ -273,7 +273,7 @@
 		<ingredient count="1" id="77" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="38" id="1459" />
 		<!-- Adena -->
 		<ingredient count="113400" id="57" isTaxIngredient="true" />
@@ -287,7 +287,7 @@
 		<ingredient count="1" id="76" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="38" id="1459" />
 		<!-- Adena -->
 		<ingredient count="113400" id="57" isTaxIngredient="true" />
@@ -301,7 +301,7 @@
 		<ingredient count="1" id="134" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="38" id="1459" />
 		<!-- Adena -->
 		<ingredient count="113400" id="57" isTaxIngredient="true" />
@@ -315,7 +315,7 @@
 		<ingredient count="1" id="77" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="38" id="1459" />
 		<!-- Adena -->
 		<ingredient count="113400" id="57" isTaxIngredient="true" />
@@ -329,7 +329,7 @@
 		<ingredient count="1" id="135" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="438" id="1459" />
 		<!-- Adena -->
 		<ingredient count="1314900" id="57" isTaxIngredient="true" />
@@ -343,7 +343,7 @@
 		<ingredient count="1" id="135" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="438" id="1459" />
 		<!-- Adena -->
 		<ingredient count="1314900" id="57" isTaxIngredient="true" />
@@ -357,7 +357,7 @@
 		<ingredient count="1" id="11821" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="20" id="1459" />
 		<!-- Adena -->
 		<ingredient count="60900" id="57" isTaxIngredient="true" />
@@ -371,7 +371,7 @@
 		<ingredient count="1" id="11801" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="20" id="1459" />
 		<!-- Adena -->
 		<ingredient count="60900" id="57" isTaxIngredient="true" />
@@ -385,7 +385,7 @@
 		<ingredient count="1" id="11807" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="20" id="1459" />
 		<!-- Adena -->
 		<ingredient count="60900" id="57" isTaxIngredient="true" />
@@ -399,7 +399,7 @@
 		<ingredient count="1" id="11815" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="20" id="1459" />
 		<!-- Adena -->
 		<ingredient count="60900" id="57" isTaxIngredient="true" />
@@ -413,7 +413,7 @@
 		<ingredient count="1" id="11820" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="20" id="1459" />
 		<!-- Adena -->
 		<ingredient count="60900" id="57" isTaxIngredient="true" />
@@ -427,7 +427,7 @@
 		<ingredient count="1" id="11801" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="35" id="1459" />
 		<!-- Adena -->
 		<ingredient count="105000" id="57" isTaxIngredient="true" />
@@ -441,7 +441,7 @@
 		<ingredient count="1" id="11807" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="35" id="1459" />
 		<!-- Adena -->
 		<ingredient count="105000" id="57" isTaxIngredient="true" />
@@ -455,7 +455,7 @@
 		<ingredient count="1" id="11801" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="35" id="1459" />
 		<!-- Adena -->
 		<ingredient count="105000" id="57" isTaxIngredient="true" />
@@ -469,7 +469,7 @@
 		<ingredient count="1" id="11807" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="35" id="1459" />
 		<!-- Adena -->
 		<ingredient count="105000" id="57" isTaxIngredient="true" />
@@ -483,7 +483,7 @@
 		<ingredient count="1" id="11801" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="35" id="1459" />
 		<!-- Adena -->
 		<ingredient count="105000" id="57" isTaxIngredient="true" />
@@ -497,7 +497,7 @@
 		<ingredient count="1" id="11807" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="35" id="1459" />
 		<!-- Adena -->
 		<ingredient count="105000" id="57" isTaxIngredient="true" />
@@ -511,7 +511,7 @@
 		<ingredient count="1" id="11801" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="35" id="1459" />
 		<!-- Adena -->
 		<ingredient count="105000" id="57" isTaxIngredient="true" />
@@ -525,7 +525,7 @@
 		<ingredient count="1" id="11807" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="35" id="1459" />
 		<!-- Adena -->
 		<ingredient count="105000" id="57" isTaxIngredient="true" />
@@ -539,7 +539,7 @@
 		<ingredient count="1" id="11853" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="14" id="1459" />
 		<!-- Adena -->
 		<ingredient count="41400" id="57" isTaxIngredient="true" />
@@ -553,7 +553,7 @@
 		<ingredient count="1" id="11801" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="4" id="1459" />
 		<!-- Adena -->
 		<ingredient count="12600" id="57" isTaxIngredient="true" />
@@ -567,7 +567,7 @@
 		<ingredient count="1" id="11807" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="4" id="1459" />
 		<!-- Adena -->
 		<ingredient count="12600" id="57" isTaxIngredient="true" />
@@ -581,7 +581,7 @@
 		<ingredient count="1" id="11801" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="4" id="1459" />
 		<!-- Adena -->
 		<ingredient count="12600" id="57" isTaxIngredient="true" />
@@ -595,7 +595,7 @@
 		<ingredient count="1" id="11807" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="4" id="1459" />
 		<!-- Adena -->
 		<ingredient count="12600" id="57" isTaxIngredient="true" />
@@ -609,7 +609,7 @@
 		<ingredient count="1" id="11815" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="4" id="1459" />
 		<!-- Adena -->
 		<ingredient count="12600" id="57" isTaxIngredient="true" />
@@ -623,7 +623,7 @@
 		<ingredient count="1" id="11820" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="4" id="1459" />
 		<!-- Adena -->
 		<ingredient count="12600" id="57" isTaxIngredient="true" />
@@ -637,7 +637,7 @@
 		<ingredient count="1" id="11807" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="4" id="1459" />
 		<!-- Adena -->
 		<ingredient count="12600" id="57" isTaxIngredient="true" />
@@ -651,7 +651,7 @@
 		<ingredient count="1" id="11815" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="4" id="1459" />
 		<!-- Adena -->
 		<ingredient count="12600" id="57" isTaxIngredient="true" />
@@ -665,7 +665,7 @@
 		<ingredient count="1" id="11820" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="4" id="1459" />
 		<!-- Adena -->
 		<ingredient count="12600" id="57" isTaxIngredient="true" />
@@ -679,7 +679,7 @@
 		<ingredient count="1" id="11853" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="49" id="1459" />
 		<!-- Adena -->
 		<ingredient count="146100" id="57" isTaxIngredient="true" />
@@ -693,7 +693,7 @@
 		<ingredient count="1" id="11853" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="49" id="1459" />
 		<!-- Adena -->
 		<ingredient count="146100" id="57" isTaxIngredient="true" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/1007.xml b/L2J_DataPack_BETA/dist/game/data/multisell/1007.xml
index f945ad4430e8b1a51dba015c71b00925d22ea37b..dc627f53aa9d922c5842982a945a9a2026e9e2ef 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/1007.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/1007.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Shamshir -->
 		<ingredient count="1" id="73" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/1008.xml b/L2J_DataPack_BETA/dist/game/data/multisell/1008.xml
index 148d1611597235b9e612d69d9249aaab0c74abcc..af0689d6a35c018ff3540e0266a6db1029cc767d 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/1008.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/1008.xml
@@ -1,69 +1,69 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
-		<!-- Life Stone: level 46 -->
+		<!-- Life Stone -  Level 46 -->
 		<ingredient count="5" id="8723" />
-		<!-- Accessory Life Stone - level 46 -->
+		<!-- Accessory Life Stone -  Level 46 -->
 		<production count="1" id="12754" />
 	</item>
 	<item>
-		<!-- Life Stone: level 49 -->
+		<!-- Life Stone -  Level 49 -->
 		<ingredient count="5" id="8724" />
-		<!-- Accessory Life Stone - level 49 -->
+		<!-- Accessory Life Stone -  Level 49 -->
 		<production count="1" id="12755" />
 	</item>
 	<item>
-		<!-- Life Stone: level 52 -->
+		<!-- Life Stone -  Level 52 -->
 		<ingredient count="5" id="8725" />
-		<!-- Accessory Life Stone - level 52 -->
+		<!-- Accessory Life Stone -  Level 52 -->
 		<production count="1" id="12756" />
 	</item>
 	<item>
-		<!-- Life Stone: level 55 -->
+		<!-- Life Stone -  Level 55 -->
 		<ingredient count="5" id="8726" />
-		<!-- Accessory Life Stone - level 55 -->
+		<!-- Accessory Life Stone -  Level 55 -->
 		<production count="1" id="12757" />
 	</item>
 	<item>
-		<!-- Life Stone: level 58 -->
+		<!-- Life Stone -  Level 58 -->
 		<ingredient count="5" id="8727" />
-		<!-- Accessory Life Stone - level 58 -->
+		<!-- Accessory Life Stone -  Level 58 -->
 		<production count="1" id="12758" />
 	</item>
 	<item>
-		<!-- Life Stone: level 61 -->
+		<!-- Life Stone -  Level 61 -->
 		<ingredient count="5" id="8728" />
-		<!-- Accessory Life Stone - level 61 -->
+		<!-- Accessory Life Stone -  Level 61 -->
 		<production count="1" id="12759" />
 	</item>
 	<item>
-		<!-- Life Stone: level 64 -->
+		<!-- Life Stone -  Level 64 -->
 		<ingredient count="5" id="8729" />
-		<!-- Accessory Life Stone - level 64 -->
+		<!-- Accessory Life Stone -  Level 64 -->
 		<production count="1" id="12760" />
 	</item>
 	<item>
-		<!-- Life Stone: level 67 -->
+		<!-- Life Stone -  Level 67 -->
 		<ingredient count="5" id="8730" />
-		<!-- Accessory Life Stone - level 67 -->
+		<!-- Accessory Life Stone -  Level 67 -->
 		<production count="1" id="12761" />
 	</item>
 	<item>
-		<!-- Life Stone: level 76 -->
+		<!-- Life Stone -  Level 76 -->
 		<ingredient count="5" id="8732" />
-		<!-- Accessory Life Stone - level 76 -->
+		<!-- Accessory Life Stone -  Level 76 -->
 		<production count="1" id="12763" />
 	</item>
 	<item>
-		<!-- Life Stone: level 80 -->
+		<!-- Life Stone -  Level 80 -->
 		<ingredient count="5" id="9573" />
-		<!-- Accessory Life Stone - level 80 -->
+		<!-- Accessory Life Stone -  Level 80 -->
 		<production count="1" id="12821" />
 	</item>
 	<item>
-		<!-- Life Stone - level 84 -->
+		<!-- Life Stone -  Level 84 -->
 		<ingredient count="5" id="14166" />
-		<!-- Accessory Type Life Stone - level 84 -->
+		<!-- Accessory Type Life Stone -  Level 84 -->
 		<production count="1" id="14008" />
 	</item>
 </list>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/101.xml b/L2J_DataPack_BETA/dist/game/data/multisell/101.xml
index 4a823c1340197765431f34a59b0b00aaa8b7935a..60311744a86ca5ffbd5a76f7803bfb0621e3ee1b 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/101.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/101.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Pet Exchange Ticket: Cougar -->
 		<ingredient count="1" id="7584" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/102.xml b/L2J_DataPack_BETA/dist/game/data/multisell/102.xml
index c5a61432b70a433abe292534e44020bf9a88e049..d70caea004f05e7435804842d38528894da226de 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/102.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/102.xml
@@ -1,6 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
-	<!-- Olympiad: Equipment Rewards -->
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Olympiad Token -->
 		<ingredient count="30600" id="13722" />
@@ -263,4 +262,4 @@
 		<!-- Vorpal Sigil -->
 		<production count="1" id="15605" />
 	</item>
-</list>
\ No newline at end of file
+</list>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/103.xml b/L2J_DataPack_BETA/dist/game/data/multisell/103.xml
index 3a7cf6828b597c3cf82d56d5cf7a57a79790604a..8f4582250bd1f332f8bbb6585ff13951b503a3d9 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/103.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/103.xml
@@ -1,10 +1,9 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
-	<!-- Olympiad: Misc. Rewards -->
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Medal of Glory -->
 		<ingredient count="1" id="21874" />
-		<!-- Fame -->
+		<!-- Fame Points -->
 		<production count="100" id="-300" />
 	</item>
 	<item>
@@ -190,7 +189,7 @@
 	<item>
 		<!-- Olympiad Token -->
 		<ingredient count="30000" id="13722" />
-		<!-- Fame -->
+		<!-- Fame Points -->
 		<ingredient count="800" id="-300" />
 		<!-- Adena -->
 		<ingredient count="12000000" id="57" />
@@ -200,7 +199,7 @@
 	<item>
 		<!-- Olympiad Token -->
 		<ingredient count="30000" id="13722" />
-		<!-- Fame -->
+		<!-- Fame Points -->
 		<ingredient count="800" id="-300" />
 		<!-- Adena -->
 		<ingredient count="12000000" id="57" />
@@ -210,7 +209,7 @@
 	<item>
 		<!-- Olympiad Token -->
 		<ingredient count="30000" id="13722" />
-		<!-- Fame -->
+		<!-- Fame Points -->
 		<ingredient count="800" id="-300" />
 		<!-- Adena -->
 		<ingredient count="12000000" id="57" />
@@ -220,7 +219,7 @@
 	<item>
 		<!-- Olympiad Token -->
 		<ingredient count="30000" id="13722" />
-		<!-- Fame -->
+		<!-- Fame Points -->
 		<ingredient count="800" id="-300" />
 		<!-- Adena -->
 		<ingredient count="12000000" id="57" />
@@ -230,7 +229,7 @@
 	<item>
 		<!-- Olympiad Token -->
 		<ingredient count="30000" id="13722" />
-		<!-- Fame -->
+		<!-- Fame Points -->
 		<ingredient count="800" id="-300" />
 		<!-- Adena -->
 		<ingredient count="12000000" id="57" />
@@ -240,7 +239,7 @@
 	<item>
 		<!-- Olympiad Token -->
 		<ingredient count="30000" id="13722" />
-		<!-- Fame -->
+		<!-- Fame Points -->
 		<ingredient count="800" id="-300" />
 		<!-- Adena -->
 		<ingredient count="12000000" id="57" />
@@ -250,7 +249,7 @@
 	<item>
 		<!-- Olympiad Token -->
 		<ingredient count="30000" id="13722" />
-		<!-- Fame -->
+		<!-- Fame Points -->
 		<ingredient count="800" id="-300" />
 		<!-- Adena -->
 		<ingredient count="12000000" id="57" />
@@ -260,7 +259,7 @@
 	<item>
 		<!-- Olympiad Token -->
 		<ingredient count="30000" id="13722" />
-		<!-- Fame -->
+		<!-- Fame Points -->
 		<ingredient count="800" id="-300" />
 		<!-- Adena -->
 		<ingredient count="12000000" id="57" />
@@ -270,7 +269,7 @@
 	<item>
 		<!-- Olympiad Token -->
 		<ingredient count="30000" id="13722" />
-		<!-- Fame -->
+		<!-- Fame Points -->
 		<ingredient count="800" id="-300" />
 		<!-- Adena -->
 		<ingredient count="12000000" id="57" />
@@ -280,6 +279,7 @@
 	<item>
 		<!-- Olympiad Token -->
 		<ingredient count="30000" id="13722" />
+		<!-- Fame Points -->
 		<ingredient count="800" id="-300" />
 		<!-- Adena -->
 		<ingredient count="12000000" id="57" />
@@ -289,7 +289,7 @@
 	<item>
 		<!-- Olympiad Token -->
 		<ingredient count="30000" id="13722" />
-		<!-- Fame -->
+		<!-- Fame Points -->
 		<ingredient count="800" id="-300" />
 		<!-- Adena -->
 		<ingredient count="12000000" id="57" />
@@ -299,7 +299,7 @@
 	<item>
 		<!-- Olympiad Token -->
 		<ingredient count="30000" id="13722" />
-		<!-- Fame -->
+		<!-- Fame Points -->
 		<ingredient count="800" id="-300" />
 		<!-- Adena -->
 		<ingredient count="12000000" id="57" />
@@ -309,7 +309,7 @@
 	<item>
 		<!-- Olympiad Token -->
 		<ingredient count="30000" id="13722" />
-		<!-- Fame -->
+		<!-- Fame Points -->
 		<ingredient count="800" id="-300" />
 		<!-- Adena -->
 		<ingredient count="12000000" id="57" />
@@ -319,7 +319,7 @@
 	<item>
 		<!-- Olympiad Token -->
 		<ingredient count="30000" id="13722" />
-		<!-- Fame -->
+		<!-- Fame Points -->
 		<ingredient count="800" id="-300" />
 		<!-- Adena -->
 		<ingredient count="12000000" id="57" />
@@ -329,7 +329,7 @@
 	<item>
 		<!-- Olympiad Token -->
 		<ingredient count="30000" id="13722" />
-		<!-- Fame -->
+		<!-- Fame Points -->
 		<ingredient count="800" id="-300" />
 		<!-- Adena -->
 		<ingredient count="12000000" id="57" />
@@ -339,7 +339,7 @@
 	<item>
 		<!-- Olympiad Token -->
 		<ingredient count="30000" id="13722" />
-		<!-- Fame -->
+		<!-- Fame Points -->
 		<ingredient count="800" id="-300" />
 		<!-- Adena -->
 		<ingredient count="12000000" id="57" />
@@ -349,7 +349,7 @@
 	<item>
 		<!-- Olympiad Token -->
 		<ingredient count="30000" id="13722" />
-		<!-- Fame -->
+		<!-- Fame Points -->
 		<ingredient count="800" id="-300" />
 		<!-- Adena -->
 		<ingredient count="12000000" id="57" />
@@ -359,7 +359,7 @@
 	<item>
 		<!-- Olympiad Token -->
 		<ingredient count="30000" id="13722" />
-		<!-- Fame -->
+		<!-- Fame Points -->
 		<ingredient count="800" id="-300" />
 		<!-- Adena -->
 		<ingredient count="12000000" id="57" />
@@ -369,7 +369,7 @@
 	<item>
 		<!-- Olympiad Token -->
 		<ingredient count="30000" id="13722" />
-		<!-- Fame -->
+		<!-- Fame Points -->
 		<ingredient count="800" id="-300" />
 		<!-- Adena -->
 		<ingredient count="12000000" id="57" />
@@ -379,7 +379,7 @@
 	<item>
 		<!-- Olympiad Token -->
 		<ingredient count="30000" id="13722" />
-		<!-- Fame -->
+		<!-- Fame Points -->
 		<ingredient count="800" id="-300" />
 		<!-- Adena -->
 		<ingredient count="12000000" id="57" />
@@ -389,7 +389,7 @@
 	<item>
 		<!-- Olympiad Token -->
 		<ingredient count="30000" id="13722" />
-		<!-- Fame -->
+		<!-- Fame Points -->
 		<ingredient count="800" id="-300" />
 		<!-- Adena -->
 		<ingredient count="12000000" id="57" />
@@ -399,7 +399,7 @@
 	<item>
 		<!-- Olympiad Token -->
 		<ingredient count="30000" id="13722" />
-		<!-- Fame -->
+		<!-- Fame Points -->
 		<ingredient count="800" id="-300" />
 		<!-- Adena -->
 		<ingredient count="12000000" id="57" />
@@ -409,7 +409,7 @@
 	<item>
 		<!-- Olympiad Token -->
 		<ingredient count="30000" id="13722" />
-		<!-- Fame -->
+		<!-- Fame Points -->
 		<ingredient count="800" id="-300" />
 		<!-- Adena -->
 		<ingredient count="12000000" id="57" />
@@ -419,7 +419,7 @@
 	<item>
 		<!-- Olympiad Token -->
 		<ingredient count="30000" id="13722" />
-		<!-- Fame -->
+		<!-- Fame Points -->
 		<ingredient count="800" id="-300" />
 		<!-- Adena -->
 		<ingredient count="12000000" id="57" />
@@ -429,7 +429,7 @@
 	<item>
 		<!-- Olympiad Token -->
 		<ingredient count="30000" id="13722" />
-		<!-- Fame -->
+		<!-- Fame Points -->
 		<ingredient count="800" id="-300" />
 		<!-- Adena -->
 		<ingredient count="12000000" id="57" />
@@ -439,7 +439,7 @@
 	<item>
 		<!-- Olympiad Token -->
 		<ingredient count="30000" id="13722" />
-		<!-- Fame -->
+		<!-- Fame Points -->
 		<ingredient count="800" id="-300" />
 		<!-- Adena -->
 		<ingredient count="12000000" id="57" />
@@ -449,7 +449,7 @@
 	<item>
 		<!-- Olympiad Token -->
 		<ingredient count="30000" id="13722" />
-		<!-- Fame -->
+		<!-- Fame Points -->
 		<ingredient count="800" id="-300" />
 		<!-- Adena -->
 		<ingredient count="12000000" id="57" />
@@ -459,7 +459,7 @@
 	<item>
 		<!-- Olympiad Token -->
 		<ingredient count="30000" id="13722" />
-		<!-- Fame -->
+		<!-- Fame Points -->
 		<ingredient count="800" id="-300" />
 		<!-- Adena -->
 		<ingredient count="12000000" id="57" />
@@ -469,7 +469,7 @@
 	<item>
 		<!-- Olympiad Token -->
 		<ingredient count="30000" id="13722" />
-		<!-- Fame -->
+		<!-- Fame Points -->
 		<ingredient count="800" id="-300" />
 		<!-- Adena -->
 		<ingredient count="12000000" id="57" />
@@ -479,7 +479,7 @@
 	<item>
 		<!-- Olympiad Token -->
 		<ingredient count="30000" id="13722" />
-		<!-- Fame -->
+		<!-- Fame Points -->
 		<ingredient count="800" id="-300" />
 		<!-- Adena -->
 		<ingredient count="12000000" id="57" />
@@ -489,7 +489,7 @@
 	<item>
 		<!-- Olympiad Token -->
 		<ingredient count="30000" id="13722" />
-		<!-- Fame -->
+		<!-- Fame Points -->
 		<ingredient count="800" id="-300" />
 		<!-- Adena -->
 		<ingredient count="12000000" id="57" />
@@ -499,7 +499,7 @@
 	<item>
 		<!-- Olympiad Token -->
 		<ingredient count="30000" id="13722" />
-		<!-- Fame -->
+		<!-- Fame Points -->
 		<ingredient count="800" id="-300" />
 		<!-- Adena -->
 		<ingredient count="12000000" id="57" />
@@ -509,7 +509,7 @@
 	<item>
 		<!-- Olympiad Token -->
 		<ingredient count="30000" id="13722" />
-		<!-- Fame -->
+		<!-- Fame Points -->
 		<ingredient count="800" id="-300" />
 		<!-- Adena -->
 		<ingredient count="12000000" id="57" />
@@ -519,7 +519,7 @@
 	<item>
 		<!-- Olympiad Token -->
 		<ingredient count="30000" id="13722" />
-		<!-- Fame -->
+		<!-- Fame Points -->
 		<ingredient count="800" id="-300" />
 		<!-- Adena -->
 		<ingredient count="12000000" id="57" />
@@ -529,7 +529,7 @@
 	<item>
 		<!-- Olympiad Token -->
 		<ingredient count="30000" id="13722" />
-		<!-- Fame -->
+		<!-- Fame Points -->
 		<ingredient count="800" id="-300" />
 		<!-- Adena -->
 		<ingredient count="12000000" id="57" />
@@ -539,7 +539,7 @@
 	<item>
 		<!-- Olympiad Token -->
 		<ingredient count="30000" id="13722" />
-		<!-- Fame -->
+		<!-- Fame Points -->
 		<ingredient count="800" id="-300" />
 		<!-- Adena -->
 		<ingredient count="12000000" id="57" />
@@ -549,7 +549,7 @@
 	<item>
 		<!-- Olympiad Token -->
 		<ingredient count="30000" id="13722" />
-		<!-- Fame -->
+		<!-- Fame Points -->
 		<ingredient count="800" id="-300" />
 		<!-- Adena -->
 		<ingredient count="12000000" id="57" />
@@ -559,11 +559,11 @@
 	<item>
 		<!-- Olympiad Token -->
 		<ingredient count="30000" id="13722" />
-		<!-- Fame -->
+		<!-- Fame Points -->
 		<ingredient count="800" id="-300" />
 		<!-- Adena -->
 		<ingredient count="12000000" id="57" />
 		<!-- Forgotten Scroll - Great Fury -->
 		<production count="1" id="14227" />
 	</item>
-</list>
\ No newline at end of file
+</list>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/1235.xml b/L2J_DataPack_BETA/dist/game/data/multisell/1235.xml
index def15fafe80aef314c2ee5d64836526c96e210c3..046ba871e128abe8bd5a3fe043203e9590773bb2 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/1235.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/1235.xml
@@ -1,7 +1,7 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list applyTaxes="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list applyTaxes="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
-		<!-- Clan reputation points -->
+		<!-- Clan Reputation Points -->
 		<ingredient count="696" id="-200" />
 		<!-- Adena -->
 		<ingredient count="1392000" id="57" />
@@ -11,7 +11,7 @@
 		<production count="1" id="7860" />
 	</item>
 	<item>
-		<!-- Clan reputation points -->
+		<!-- Clan Reputation Points -->
 		<ingredient count="2708" id="-200" />
 		<!-- Adena -->
 		<ingredient count="5416000" id="57" />
@@ -21,7 +21,7 @@
 		<production count="1" id="7861" />
 	</item>
 	<item>
-		<!-- Clan reputation points -->
+		<!-- Clan Reputation Points -->
 		<ingredient count="464" id="-200" />
 		<!-- Adena -->
 		<ingredient count="928000" id="57" />
@@ -31,7 +31,7 @@
 		<production count="1" id="7862" />
 	</item>
 	<item>
-		<!-- Clan reputation points -->
+		<!-- Clan Reputation Points -->
 		<ingredient count="464" id="-200" />
 		<!-- Adena -->
 		<ingredient count="928000" id="57" />
@@ -41,7 +41,7 @@
 		<production count="1" id="7863" />
 	</item>
 	<item>
-		<!-- Clan reputation points -->
+		<!-- Clan Reputation Points -->
 		<ingredient count="2032" id="-200" />
 		<!-- Adena -->
 		<ingredient count="4064000" id="57" />
@@ -51,7 +51,7 @@
 		<production count="1" id="7864" />
 	</item>
 	<item>
-		<!-- Clan reputation points -->
+		<!-- Clan Reputation Points -->
 		<ingredient count="464" id="-200" />
 		<!-- Adena -->
 		<ingredient count="928000" id="57" />
@@ -61,7 +61,7 @@
 		<production count="1" id="7865" />
 	</item>
 	<item>
-		<!-- Clan reputation points -->
+		<!-- Clan Reputation Points -->
 		<ingredient count="464" id="-200" />
 		<!-- Adena -->
 		<ingredient count="928000" id="57" />
@@ -71,7 +71,7 @@
 		<production count="1" id="7866" />
 	</item>
 	<item>
-		<!-- Clan reputation points -->
+		<!-- Clan Reputation Points -->
 		<ingredient count="2032" id="-200" />
 		<!-- Adena -->
 		<ingredient count="4064000" id="57" />
@@ -81,7 +81,7 @@
 		<production count="1" id="7867" />
 	</item>
 	<item>
-		<!-- Clan reputation points -->
+		<!-- Clan Reputation Points -->
 		<ingredient count="464" id="-200" />
 		<!-- Adena -->
 		<ingredient count="928000" id="57" />
@@ -91,7 +91,7 @@
 		<production count="1" id="7868" />
 	</item>
 	<item>
-		<!-- Clan reputation points -->
+		<!-- Clan Reputation Points -->
 		<ingredient count="464" id="-200" />
 		<!-- Adena -->
 		<ingredient count="928000" id="57" />
@@ -101,7 +101,7 @@
 		<production count="1" id="7869" />
 	</item>
 	<item>
-		<!-- Clan reputation points -->
+		<!-- Clan Reputation Points -->
 		<ingredient count="1046" id="-200" />
 		<!-- Knight's Epaulette -->
 		<ingredient count="26" id="9912" />
@@ -113,7 +113,7 @@
 		<production count="1" id="9830" />
 	</item>
 	<item>
-		<!-- Clan reputation points -->
+		<!-- Clan Reputation Points -->
 		<ingredient count="4532" id="-200" />
 		<!-- Knight's Epaulette -->
 		<ingredient count="115" id="9912" />
@@ -125,7 +125,7 @@
 		<production count="1" id="9831" />
 	</item>
 	<item>
-		<!-- Clan reputation points -->
+		<!-- Clan Reputation Points -->
 		<ingredient count="697" id="-200" />
 		<!-- Knight's Epaulette -->
 		<ingredient count="18" id="9912" />
@@ -137,7 +137,7 @@
 		<production count="1" id="9832" />
 	</item>
 	<item>
-		<!-- Clan reputation points -->
+		<!-- Clan Reputation Points -->
 		<ingredient count="697" id="-200" />
 		<!-- Knight's Epaulette -->
 		<ingredient count="18" id="9912" />
@@ -149,7 +149,7 @@
 		<production count="1" id="9833" />
 	</item>
 	<item>
-		<!-- Clan reputation points -->
+		<!-- Clan Reputation Points -->
 		<ingredient count="3399" id="-200" />
 		<!-- Knight's Epaulette -->
 		<ingredient count="86" id="9912" />
@@ -161,7 +161,7 @@
 		<production count="1" id="9834" />
 	</item>
 	<item>
-		<!-- Clan reputation points -->
+		<!-- Clan Reputation Points -->
 		<ingredient count="697" id="-200" />
 		<!-- Knight's Epaulette -->
 		<ingredient count="18" id="9912" />
@@ -173,7 +173,7 @@
 		<production count="1" id="9835" />
 	</item>
 	<item>
-		<!-- Clan reputation points -->
+		<!-- Clan Reputation Points -->
 		<ingredient count="697" id="-200" />
 		<!-- Knight's Epaulette -->
 		<ingredient count="18" id="9912" />
@@ -185,7 +185,7 @@
 		<production count="1" id="9836" />
 	</item>
 	<item>
-		<!-- Clan reputation points -->
+		<!-- Clan Reputation Points -->
 		<ingredient count="3399" id="-200" />
 		<!-- Knight's Epaulette -->
 		<ingredient count="86" id="9912" />
@@ -197,7 +197,7 @@
 		<production count="1" id="9837" />
 	</item>
 	<item>
-		<!-- Clan reputation points -->
+		<!-- Clan Reputation Points -->
 		<ingredient count="697" id="-200" />
 		<!-- Knight's Epaulette -->
 		<ingredient count="18" id="9912" />
@@ -209,7 +209,7 @@
 		<production count="1" id="9838" />
 	</item>
 	<item>
-		<!-- Clan reputation points -->
+		<!-- Clan Reputation Points -->
 		<ingredient count="697" id="-200" />
 		<!-- Knight's Epaulette -->
 		<ingredient count="18" id="9912" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/201.xml b/L2J_DataPack_BETA/dist/game/data/multisell/201.xml
index fbc66694724d7d4a473b5747847af84817c5326d..48c429a90f51a742814aa9392d21164a4e604192 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/201.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/201.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="103439000" id="57" />
@@ -105,7 +105,7 @@
 	<item>
 		<!-- Adena -->
 		<ingredient count="15248000" id="57" />
-		<!-- Dynasty Gaiter -->
+		<!-- Dynasty Gaiters -->
 		<production count="1" id="9421" />
 	</item>
 	<item>
@@ -129,13 +129,13 @@
 	<item>
 		<!-- Adena -->
 		<ingredient count="25255000" id="57" />
-		<!-- Dynasty Jewel Leather Mail - Dagger Master -->
+		<!-- Dynasty Jewel Leather Armor - Dagger Master -->
 		<production count="1" id="10233" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="25255000" id="57" />
-		<!-- Dynasty Jewel Leather Mail - Bow Master -->
+		<!-- Dynasty Jewel Leather Armor - Bow Master -->
 		<production count="1" id="10234" />
 	</item>
 	<item>
@@ -339,7 +339,7 @@
 	<item>
 		<!-- Adena -->
 		<ingredient count="400000" id="57" />
-		<!-- Divine Stone -->
+		<!-- Holy Stone -->
 		<production count="1" id="9551" />
 	</item>
 	<item>
@@ -375,7 +375,7 @@
 	<item>
 		<!-- Adena -->
 		<ingredient count="100000000" id="57" />
-		<!-- Divine Crystal -->
+		<!-- Holy Crystal -->
 		<production count="1" id="9557" />
 	</item>
 </list>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/202.xml b/L2J_DataPack_BETA/dist/game/data/multisell/202.xml
index d744372be56e333154322684435350e29f418fea..f0708e1604b0c5820078dd5bf4684b0368d34810 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/202.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/202.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="1" id="57" />
@@ -405,13 +405,13 @@
 	<item>
 		<!-- Adena -->
 		<ingredient count="10000000" id="57" />
-		<!-- Forgotten Scroll - Lucky Strike -->
+		<!-- This Forgotten Scroll can be used by Fortune Seekers level 83 and above to learn Lucky Strike. -->
 		<production count="1" id="14222" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="10000000" id="57" />
-		<!-- Forgotten Scroll - Eye for Eye -->
+		<!-- This Forgotten Scroll can be used by Doombringers level 83 and above to learn Eye for Eye. -->
 		<production count="1" id="14223" />
 	</item>
 	<item>
@@ -471,7 +471,7 @@
 	<item>
 		<!-- Adena -->
 		<ingredient count="10000" id="57" />
-		<!-- Floating Stone -->
+		<!-- Vacualite Floating Stone -->
 		<production count="1" id="7267" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/300900001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/300900001.xml
index 5c34c2d30ed08cb40b7113efd0a036c65b9d9d9a..803d97887816746e06f3e77de7392cf694fd0112 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/300900001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/300900001.xml
@@ -1,9 +1,9 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="12000" id="57" />
-		<!-- Blue Talisman - Attack Power -->
+		<!-- Blue Talisman - P. Atk. -->
 		<production count="1" id="10533" />
 	</item>
 	<item>
@@ -15,13 +15,13 @@
 	<item>
 		<!-- Adena -->
 		<ingredient count="12000" id="57" />
-		<!-- Yellow Talisman - Defense Power -->
+		<!-- Yellow Talisman - P. Def. -->
 		<production count="1" id="10535" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="12000" id="57" />
-		<!-- Yellow Talisman - Magic Power -->
+		<!-- Yellow Talisman - M. Atk. -->
 		<production count="1" id="10536" />
 	</item>
 	<item>
@@ -51,7 +51,7 @@
 	<item>
 		<!-- Adena -->
 		<ingredient count="12000" id="57" />
-		<!-- Yellow Talisman - Low Grade MP regeneration rate -->
+		<!-- Yellow Talisman - Low Grade MP Recovery Rate -->
 		<production count="1" id="10541" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/300974001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/300974001.xml
index 30b084736eb242dd9b919b41d59100924d8fc1f2..53f4d3afd57af46f12fb1a8ac3f57ceeb3fba64d 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/300974001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/300974001.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="6680500" id="57" />
@@ -87,13 +87,13 @@
 	<item>
 		<!-- Adena -->
 		<ingredient count="6680500" id="57" />
-		<!-- Products -->
+		<!-- Peacemaker -->
 		<production count="1" id="9312" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="20741000" id="57" />
-		<!-- Peacemaker -->
+		<!-- Soul Separator -->
 		<production count="1" id="236" />
 	</item>
 	<item>
@@ -105,13 +105,13 @@
 	<item>
 		<!-- Adena -->
 		<ingredient count="20741000" id="57" />
-		<!-- Products -->
+		<!-- Dark Legion's Edge -->
 		<production count="1" id="2500" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="20741000" id="57" />
-		<!-- Dark Legion's Edge -->
+		<!-- Lacerator -->
 		<production count="1" id="9340" />
 	</item>
 	<item>
@@ -174,4 +174,4 @@
 		<!-- Dragon Grinder -->
 		<production count="1" id="270" />
 	</item>
-</list>
\ No newline at end of file
+</list>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/300984001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/300984001.xml
index 808283a35e092780be694fb71f746e33fa601b6c..da6bfb38fad8c227437c4abb6b36b7d0b6a136e5 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/300984001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/300984001.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="1596000" id="57" />
@@ -21,19 +21,19 @@
 	<item>
 		<!-- Adena -->
 		<ingredient count="399100" id="57" />
-		<!-- Zubei's Boots -->
+		<!-- Sealed Zubei's Boots -->
 		<production count="1" id="554" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="399100" id="57" />
-		<!-- Avadon Boots -->
+		<!-- Sealed Avadon Boots -->
 		<production count="1" id="600" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="399100" id="57" />
-		<!-- Zubei's Gauntlets -->
+		<!-- Sealed Zubei's Gauntlets -->
 		<production count="1" id="612" />
 	</item>
 	<item>
@@ -105,7 +105,7 @@
 	<item>
 		<!-- Adena -->
 		<ingredient count="399100" id="57" />
-		<!-- Avadon Gloves -->
+		<!-- Sealed Avadon Gloves -->
 		<production count="1" id="2464" />
 	</item>
 	<item>
@@ -294,4 +294,4 @@
 		<!-- Sealed Majestic Ring -->
 		<production count="1" id="6328" />
 	</item>
-</list>
\ No newline at end of file
+</list>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/300984002.xml b/L2J_DataPack_BETA/dist/game/data/multisell/300984002.xml
index 4596152b3f96b39aee2450abc757cbd36a06cf0b..e50b4f67410954bacd0fec321a2d01b9e9c6767d 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/300984002.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/300984002.xml
@@ -1,113 +1,113 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="200" id="1459" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="1000" id="1458" />
 		<!-- Luxurious Gold Circlet -->
 		<production count="1" id="8914" />
 	</item>
 	<item>
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="200" id="1459" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="1000" id="1458" />
 		<!-- Luxurious Silver Circlet -->
 		<production count="1" id="8915" />
 	</item>
 	<item>
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="100" id="1459" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="500" id="1458" />
 		<!-- Red Soul Crystal - Stage 7 -->
 		<production count="1" id="4636" />
 	</item>
 	<item>
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="100" id="1459" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="500" id="1458" />
 		<!-- Green Soul Crystal - Stage 7 -->
 		<production count="1" id="4647" />
 	</item>
 	<item>
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="100" id="1459" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="500" id="1458" />
 		<!-- Blue Soul Crystal - Stage 7 -->
 		<production count="1" id="4658" />
 	</item>
 	<item>
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="120" id="1459" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="567" id="1458" />
 		<!-- Red Soul Crystal - Stage 8 -->
 		<production count="1" id="4637" />
 	</item>
 	<item>
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="120" id="1459" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="567" id="1458" />
 		<!-- Green Soul Crystal - Stage 8 -->
 		<production count="1" id="4648" />
 	</item>
 	<item>
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="120" id="1459" />
-		<!-- Crystal: D-Grade -->
+		<!-- Crystal (D-Grade) -->
 		<ingredient count="567" id="1458" />
 		<!-- Blue Soul Crystal - Stage 8 -->
 		<production count="1" id="4659" />
 	</item>
 	<item>
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<ingredient count="44" id="1460" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="135" id="1459" />
 		<!-- Red Soul Crystal - Stage 9 -->
 		<production count="1" id="4638" />
 	</item>
 	<item>
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<ingredient count="44" id="1460" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="135" id="1459" />
 		<!-- Green Soul Crystal - Stage 9 -->
 		<production count="1" id="4649" />
 	</item>
 	<item>
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<ingredient count="44" id="1460" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="135" id="1459" />
 		<!-- Blue Soul Crystal - Stage 9 -->
 		<production count="1" id="4660" />
 	</item>
 	<item>
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<ingredient count="50" id="1460" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="150" id="1459" />
 		<!-- Red Soul Crystal - Stage 10 -->
 		<production count="1" id="4639" />
 	</item>
 	<item>
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<ingredient count="50" id="1460" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="150" id="1459" />
 		<!-- Green Soul Crystal - Stage 10 -->
 		<production count="1" id="4650" />
 	</item>
 	<item>
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<ingredient count="50" id="1460" />
-		<!-- Crystal: C-Grade -->
+		<!-- Crystal (C-Grade) -->
 		<ingredient count="150" id="1459" />
 		<!-- Blue Soul Crystal - Stage 10 -->
 		<production count="1" id="4661" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/301660373.xml b/L2J_DataPack_BETA/dist/game/data/multisell/301660373.xml
index 765d5b01bdc91b46284135a09bc4d593a881e4c0..df3af19e17c523b46e9f0043d9c1a9ddf64e423c 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/301660373.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/301660373.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Magma Dust -->
 		<ingredient count="2" id="6022" />
@@ -27,7 +27,7 @@
 	<item>
 		<!-- Demonplasm -->
 		<ingredient count="7" id="6025" />
-		<!-- Potion of Alacrity -->
+		<!-- Alacrity Potion -->
 		<production count="10" id="735" />
 	</item>
 	<item>
@@ -39,49 +39,49 @@
 	<item>
 		<!-- Draconic Essence -->
 		<ingredient count="1" id="6027" />
-		<!-- Recipe: Avadon Gloves (60%) -->
+		<!-- Recipe: Sealed Avadon Gloves (60%) -->
 		<production count="1" id="4953" />
 	</item>
 	<item>
 		<!-- Draconic Essence -->
 		<ingredient count="1" id="6027" />
-		<!-- Recipe: Zubei's Gauntlets (60%) -->
+		<!-- Recipe: Sealed Zubei's Gauntlets (60%) -->
 		<production count="1" id="4960" />
 	</item>
 	<item>
 		<!-- Midnight Oil -->
 		<ingredient count="1" id="6030" />
-		<!-- Recipe: Avadon Boots (60%) -->
+		<!-- Recipe: Sealed Avadon Boots (60%) -->
 		<production count="1" id="4959" />
 	</item>
 	<item>
 		<!-- Midnight Oil -->
 		<ingredient count="1" id="6030" />
-		<!-- Recipe: Zubei's Boots (60%) -->
+		<!-- Recipe: Sealed Zubei's Boots (60%) -->
 		<production count="1" id="4958" />
 	</item>
 	<item>
 		<!-- Midnight Oil -->
 		<ingredient count="1" id="6030" />
-		<!-- Recipe: Blue Wolf Gloves (60%) -->
+		<!-- Recipe: Sealed Blue Wolf Gloves (60%) -->
 		<production count="1" id="4998" />
 	</item>
 	<item>
 		<!-- Midnight Oil -->
 		<ingredient count="1" id="6030" />
-		<!-- Recipe: Blue Wolf Boots (60%) -->
+		<!-- Recipe: Sealed Blue Wolf Boots (60%) -->
 		<production count="1" id="4992" />
 	</item>
 	<item>
 		<!-- Midnight Oil -->
 		<ingredient count="1" id="6030" />
-		<!-- Recipe: Doom Gloves (60%) -->
+		<!-- Recipe: Sealed Doom Gloves (60%) -->
 		<production count="1" id="4993" />
 	</item>
 	<item>
 		<!-- Midnight Oil -->
 		<ingredient count="1" id="6030" />
-		<!-- Recipe: Doom Boots (60%) -->
+		<!-- Recipe: Sealed Doom Boots (60%) -->
 		<production count="1" id="4999" />
 	</item>
 	<item>
@@ -159,49 +159,49 @@
 	<item>
 		<!-- Hellfire Oil -->
 		<ingredient count="1" id="6033" />
-		<!-- Zubei's Gauntlets -->
+		<!-- Sealed Zubei's Gauntlets -->
 		<production count="1" id="612" />
 	</item>
 	<item>
 		<!-- Hellfire Oil -->
 		<ingredient count="1" id="6033" />
-		<!-- Avadon Gloves -->
+		<!-- Sealed Avadon Gloves -->
 		<production count="1" id="2464" />
 	</item>
 	<item>
 		<!-- Hellfire Oil -->
 		<ingredient count="1" id="6033" />
-		<!-- Zubei's Boots -->
+		<!-- Sealed Zubei's Boots -->
 		<production count="1" id="554" />
 	</item>
 	<item>
 		<!-- Hellfire Oil -->
 		<ingredient count="1" id="6033" />
-		<!-- Avadon Boots -->
+		<!-- Sealed Avadon Boots -->
 		<production count="1" id="600" />
 	</item>
 	<item>
 		<!-- Nightmare Oil -->
 		<ingredient count="4" id="6034" />
-		<!-- Blue Wolf Boots -->
+		<!-- Sealed Blue Wolf Boots -->
 		<production count="1" id="2439" />
 	</item>
 	<item>
 		<!-- Nightmare Oil -->
 		<ingredient count="4" id="6034" />
-		<!-- Boots of Doom -->
+		<!-- Sealed Doom Boots -->
 		<production count="1" id="601" />
 	</item>
 	<item>
 		<!-- Nightmare Oil -->
 		<ingredient count="4" id="6034" />
-		<!-- Blue Wolf Gloves -->
+		<!-- Sealed Blue Wolf Gloves -->
 		<production count="1" id="2487" />
 	</item>
 	<item>
 		<!-- Nightmare Oil -->
 		<ingredient count="4" id="6034" />
-		<!-- Doom Gloves -->
+		<!-- Sealed Doom Gloves -->
 		<production count="1" id="2475" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/305986001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/305986001.xml
index 876b0748fd56c6660e2a5b01f6ac72b9da89052a..72c60092c389caeb2b13fe71293cb269da8fed19 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/305986001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/305986001.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Apprentice Adventurer's Weapon Exchange Coupon -->
 		<ingredient count="1" id="7832" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/305986002.xml b/L2J_DataPack_BETA/dist/game/data/multisell/305986002.xml
index f61d13179d02ec7b29cb72e099108b66c3b72491..7b6aad4ea59621f218b5127d1fbe8c647ba68b13 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/305986002.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/305986002.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adventurer's Magic Accessory Exchange Coupon -->
 		<ingredient count="1" id="7833" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/306893001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/306893001.xml
index efbfec1ffd68ed592d583b833e6598d8e859487e..0cc3d892aad2ac7cf783f57232491edbb7b1d85e 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/306893001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/306893001.xml
@@ -1,73 +1,73 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
-		<!-- Shadow Item Exchange Coupon: D Grade -->
+		<!-- Shadow Item Exchange Coupon (D-Grade) -->
 		<ingredient count="1" id="8869" />
 		<!-- Shadow Item: Two Handed Sword -->
 		<production count="1" id="8821" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: D Grade -->
+		<!-- Shadow Item Exchange Coupon (D-Grade) -->
 		<ingredient count="1" id="8869" />
 		<!-- Shadow Item: Crimson Sword -->
 		<production count="1" id="8822" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: D Grade -->
+		<!-- Shadow Item Exchange Coupon (D-Grade) -->
 		<ingredient count="1" id="8869" />
 		<!-- Shadow Item: Spiked Club -->
 		<production count="1" id="8823" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: D Grade -->
+		<!-- Shadow Item Exchange Coupon (D-Grade) -->
 		<ingredient count="1" id="8869" />
 		<!-- Shadow Item: Staff of Magic -->
 		<production count="1" id="8824" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: D Grade -->
+		<!-- Shadow Item Exchange Coupon (D-Grade) -->
 		<ingredient count="1" id="8869" />
 		<!-- Shadow Item: Kukuri -->
 		<production count="1" id="8825" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: D Grade -->
+		<!-- Shadow Item Exchange Coupon (D-Grade) -->
 		<ingredient count="1" id="8869" />
 		<!-- Shadow Item: Dagger of Mana -->
 		<production count="1" id="8826" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: D Grade -->
+		<!-- Shadow Item Exchange Coupon (D-Grade) -->
 		<ingredient count="1" id="8869" />
 		<!-- Shadow Item: Triple-Edged Jamadhr -->
 		<production count="1" id="8827" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: D Grade -->
+		<!-- Shadow Item Exchange Coupon (D-Grade) -->
 		<ingredient count="1" id="8869" />
 		<!-- Shadow Item: Gastraphetes -->
 		<production count="1" id="8828" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: D Grade -->
+		<!-- Shadow Item Exchange Coupon (D-Grade) -->
 		<ingredient count="1" id="8869" />
 		<!-- Shadow Item: War Hammer -->
 		<production count="1" id="8829" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: D Grade -->
+		<!-- Shadow Item Exchange Coupon (D-Grade) -->
 		<ingredient count="1" id="8869" />
 		<!-- Shadow Item: Fleuret -->
 		<production count="1" id="10005" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: D Grade -->
+		<!-- Shadow Item Exchange Coupon (D-Grade) -->
 		<ingredient count="1" id="8869" />
 		<!-- Shadow Item: Military Talwar -->
 		<production count="1" id="10006" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: D Grade -->
+		<!-- Shadow Item Exchange Coupon (D-Grade) -->
 		<ingredient count="1" id="8869" />
 		<!-- Shadow Item: Hand Crossbow -->
 		<production count="1" id="10007" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/306893002.xml b/L2J_DataPack_BETA/dist/game/data/multisell/306893002.xml
index f8e05ac30b8f02a169613bd52e226974bb8d6609..6ddc1d9c38e38cfdab70bb13db5193c38fa536c1 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/306893002.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/306893002.xml
@@ -1,85 +1,85 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
-		<!-- Shadow Item Exchange Coupon: C Grade -->
+		<!-- Shadow Item Exchange Coupon (C-Grade) -->
 		<ingredient count="1" id="8870" />
 		<!-- Shadow Item: Stormbringer -->
 		<production count="1" id="8937" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: C Grade -->
+		<!-- Shadow Item Exchange Coupon (C-Grade) -->
 		<ingredient count="1" id="8870" />
 		<!-- Shadow Item: Fisted Blade -->
 		<production count="1" id="8934" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: C Grade -->
+		<!-- Shadow Item Exchange Coupon (C-Grade) -->
 		<ingredient count="1" id="8870" />
 		<!-- Shadow Item - War Axe -->
 		<production count="1" id="10011" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: C Grade -->
+		<!-- Shadow Item Exchange Coupon (C-Grade) -->
 		<ingredient count="1" id="8870" />
 		<!-- Shadow Item: Akat Long Bow -->
 		<production count="1" id="8932" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: C Grade -->
+		<!-- Shadow Item Exchange Coupon (C-Grade) -->
 		<ingredient count="1" id="8870" />
 		<!-- Shadow Item: Stick of Eternity -->
 		<production count="1" id="8928" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: C Grade -->
+		<!-- Shadow Item Exchange Coupon (C-Grade) -->
 		<ingredient count="1" id="8870" />
 		<!-- Shadow Item: Dark Screamer -->
 		<production count="1" id="8931" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: C Grade -->
+		<!-- Shadow Item Exchange Coupon (C-Grade) -->
 		<ingredient count="1" id="8870" />
 		<!-- Shadow Item: Inferno Staff -->
 		<production count="1" id="8929" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: C Grade -->
+		<!-- Shadow Item Exchange Coupon (C-Grade) -->
 		<ingredient count="1" id="8870" />
 		<!-- Shadow Item: Sword of Delusion -->
 		<production count="1" id="8926" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: C Grade -->
+		<!-- Shadow Item Exchange Coupon (C-Grade) -->
 		<ingredient count="1" id="8870" />
 		<!-- Shadow Item: Pa'agrian Sword -->
 		<production count="1" id="8933" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: C Grade -->
+		<!-- Shadow Item Exchange Coupon (C-Grade) -->
 		<ingredient count="1" id="8870" />
 		<!-- Shadow Item: Poleaxe -->
 		<production count="1" id="8927" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: C Grade -->
+		<!-- Shadow Item Exchange Coupon (C-Grade) -->
 		<ingredient count="1" id="8870" />
 		<!-- Shadow Item: Pa'agrian Hammer -->
 		<production count="1" id="8930" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: C Grade -->
+		<!-- Shadow Item Exchange Coupon (C-Grade) -->
 		<ingredient count="1" id="8870" />
 		<!-- Shadow Item: Blinzlasher -->
 		<production count="1" id="10008" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: C Grade -->
+		<!-- Shadow Item Exchange Coupon (C-Grade) -->
 		<ingredient count="1" id="8870" />
 		<!-- Shadow Item: Immortal Edge -->
 		<production count="1" id="10009" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: C Grade -->
+		<!-- Shadow Item Exchange Coupon (C-Grade) -->
 		<ingredient count="1" id="8870" />
 		<!-- Shadow Item: Tathlum -->
 		<production count="1" id="10010" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/306893003.xml b/L2J_DataPack_BETA/dist/game/data/multisell/306893003.xml
index 774d0fabfd4605642a3b6acd39c0438f9affe380..447052ac1335c400e641427f03eaf98968369583 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/306893003.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/306893003.xml
@@ -1,121 +1,121 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
-		<!-- Shadow Item Exchange Coupon: D Grade -->
+		<!-- Shadow Item Exchange Coupon (D-Grade) -->
 		<ingredient count="1" id="8869" />
 		<!-- Shadow Item: Two Handed Sword -->
 		<production count="1" id="8821" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: D Grade -->
+		<!-- Shadow Item Exchange Coupon (D-Grade) -->
 		<ingredient count="1" id="8869" />
 		<!-- Shadow Item: Crimson Sword -->
 		<production count="1" id="8822" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: D Grade -->
+		<!-- Shadow Item Exchange Coupon (D-Grade) -->
 		<ingredient count="1" id="8869" />
 		<!-- Shadow Item: Spiked Club -->
 		<production count="1" id="8823" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: D Grade -->
+		<!-- Shadow Item Exchange Coupon (D-Grade) -->
 		<ingredient count="1" id="8869" />
 		<!-- Shadow Item: Staff of Magic -->
 		<production count="1" id="8824" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: D Grade -->
+		<!-- Shadow Item Exchange Coupon (D-Grade) -->
 		<ingredient count="1" id="8869" />
 		<!-- Shadow Item: Kukuri -->
 		<production count="1" id="8825" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: D Grade -->
+		<!-- Shadow Item Exchange Coupon (D-Grade) -->
 		<ingredient count="1" id="8869" />
 		<!-- Shadow Item: Dagger of Mana -->
 		<production count="1" id="8826" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: D Grade -->
+		<!-- Shadow Item Exchange Coupon (D-Grade) -->
 		<ingredient count="1" id="8869" />
 		<!-- Shadow Item: Triple-Edged Jamadhr -->
 		<production count="1" id="8827" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: D Grade -->
+		<!-- Shadow Item Exchange Coupon (D-Grade) -->
 		<ingredient count="1" id="8869" />
 		<!-- Shadow Item: Gastraphetes -->
 		<production count="1" id="8828" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: D Grade -->
+		<!-- Shadow Item Exchange Coupon (D-Grade) -->
 		<ingredient count="1" id="8869" />
 		<!-- Shadow Item: War Hammer -->
 		<production count="1" id="8829" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: C Grade -->
+		<!-- Shadow Item Exchange Coupon (C-Grade) -->
 		<ingredient count="1" id="8870" />
 		<!-- Shadow Item: Sword of Delusion -->
 		<production count="1" id="8926" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: C Grade -->
+		<!-- Shadow Item Exchange Coupon (C-Grade) -->
 		<ingredient count="1" id="8870" />
 		<!-- Shadow Item: Poleaxe -->
 		<production count="1" id="8927" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: C Grade -->
+		<!-- Shadow Item Exchange Coupon (C-Grade) -->
 		<ingredient count="1" id="8870" />
 		<!-- Shadow Item: Stick of Eternity -->
 		<production count="1" id="8928" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: C Grade -->
+		<!-- Shadow Item Exchange Coupon (C-Grade) -->
 		<ingredient count="1" id="8870" />
 		<!-- Shadow Item: Inferno Staff -->
 		<production count="1" id="8929" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: C Grade -->
+		<!-- Shadow Item Exchange Coupon (C-Grade) -->
 		<ingredient count="1" id="8870" />
 		<!-- Shadow Item: Pa'agrian Hammer -->
 		<production count="1" id="8930" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: C Grade -->
+		<!-- Shadow Item Exchange Coupon (C-Grade) -->
 		<ingredient count="1" id="8870" />
 		<!-- Shadow Item: Dark Screamer -->
 		<production count="1" id="8931" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: C Grade -->
+		<!-- Shadow Item Exchange Coupon (C-Grade) -->
 		<ingredient count="1" id="8870" />
 		<!-- Shadow Item: Akat Long Bow -->
 		<production count="1" id="8932" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: C Grade -->
+		<!-- Shadow Item Exchange Coupon (C-Grade) -->
 		<ingredient count="1" id="8870" />
 		<!-- Shadow Item: Pa'agrian Sword -->
 		<production count="1" id="8933" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: C Grade -->
+		<!-- Shadow Item Exchange Coupon (C-Grade) -->
 		<ingredient count="1" id="8870" />
 		<!-- Shadow Item: Fisted Blade -->
 		<production count="1" id="8934" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: C Grade -->
+		<!-- Shadow Item Exchange Coupon (C-Grade) -->
 		<ingredient count="1" id="8870" />
 		<!-- Shadow Item: Stormbringer -->
 		<production count="1" id="8937" />
 	</item>
 	<item>
-		<!-- Shadow Item Exchange Coupon: C Grade -->
+		<!-- Shadow Item Exchange Coupon (C-Grade) -->
 		<ingredient count="1" id="8870" />
 		<!-- Shadow Item - War Axe -->
 		<production count="1" id="10011" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/310922001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/310922001.xml
index 297a95f2bb22341d7ee16a2e37e8404c69d564bd..0c4bea90203e52e4bdd620864a5ea77973662278 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/310922001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/310922001.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Stormbringer - Critical Anger -->
 		<ingredient count="1" id="4681" />
@@ -57,7 +57,7 @@
 		<production count="1" id="7887" />
 	</item>
 	<item>
-		<!-- Mysterious Sword - Magic Power -->
+		<!-- Mysterious Sword - M. Atk. -->
 		<ingredient count="1" id="8112" />
 		<!-- Ancient Adena -->
 		<ingredient count="14550" id="5575" />
@@ -81,7 +81,7 @@
 		<production count="1" id="89" />
 	</item>
 	<item>
-		<!-- Big Hammer - Rsk.Focus -->
+		<!-- Big Hammer - Rsk. Focus -->
 		<ingredient count="1" id="4727" />
 		<!-- Ancient Adena -->
 		<ingredient count="14550" id="5575" />
@@ -105,7 +105,7 @@
 		<production count="1" id="160" />
 	</item>
 	<item>
-		<!-- Battle Axe - Rsk.Focus -->
+		<!-- Battle Axe - Rsk. Focus -->
 		<ingredient count="1" id="4730" />
 		<!-- Ancient Adena -->
 		<ingredient count="14550" id="5575" />
@@ -129,7 +129,7 @@
 		<production count="1" id="161" />
 	</item>
 	<item>
-		<!-- Silver Axe - Rsk.Focus -->
+		<!-- Silver Axe - Rsk. Focus -->
 		<ingredient count="1" id="4733" />
 		<!-- Ancient Adena -->
 		<ingredient count="14550" id="5575" />
@@ -161,7 +161,7 @@
 		<production count="1" id="173" />
 	</item>
 	<item>
-		<!-- Skull Graver - Rsk.Focus -->
+		<!-- Skull Graver - Rsk. Focus -->
 		<ingredient count="1" id="4737" />
 		<!-- Ancient Adena -->
 		<ingredient count="14550" id="5575" />
@@ -665,7 +665,7 @@
 		<production count="1" id="282" />
 	</item>
 	<item>
-		<!-- Elven Bow of Nobility - Evasion -->
+		<!-- Noble Elven Bow - Evasion -->
 		<ingredient count="1" id="4816" />
 		<!-- Ancient Adena -->
 		<ingredient count="35700" id="5575" />
@@ -673,7 +673,7 @@
 		<production count="1" id="285" />
 	</item>
 	<item>
-		<!-- Elven Bow of Nobility - Miser -->
+		<!-- Noble Elven Bow - Miser -->
 		<ingredient count="1" id="4817" />
 		<!-- Ancient Adena -->
 		<ingredient count="35700" id="5575" />
@@ -681,7 +681,7 @@
 		<production count="1" id="285" />
 	</item>
 	<item>
-		<!-- Elven Bow of Nobility - Cheap Shot -->
+		<!-- Noble Elven Bow - Cheap Shot -->
 		<ingredient count="1" id="4818" />
 		<!-- Ancient Adena -->
 		<ingredient count="35700" id="5575" />
@@ -745,7 +745,7 @@
 		<production count="1" id="196" />
 	</item>
 	<item>
-		<!-- Stick of Eternity - Rsk., Evasion -->
+		<!-- Stick of Eternity - Rsk. Evasion -->
 		<ingredient count="1" id="7705" />
 		<!-- Ancient Adena -->
 		<ingredient count="35700" id="5575" />
@@ -785,7 +785,7 @@
 		<production count="1" id="7882" />
 	</item>
 	<item>
-		<!-- Nirvana Axe - Magic Power -->
+		<!-- Nirvana Axe - M. Atk. -->
 		<ingredient count="1" id="7707" />
 		<!-- Ancient Adena -->
 		<ingredient count="35700" id="5575" />
@@ -817,7 +817,7 @@
 		<production count="1" id="201" />
 	</item>
 	<item>
-		<!-- Club of Nature - Magic Mental Shield -->
+		<!-- Club of Nature - Mental Shield -->
 		<ingredient count="1" id="7711" />
 		<!-- Ancient Adena -->
 		<ingredient count="35700" id="5575" />
@@ -833,27 +833,27 @@
 		<production count="1" id="201" />
 	</item>
 	<item>
-		<!-- Mace of the Underworld - Mana Up -->
+		<!-- Mace of Underworld - Mana Up -->
 		<ingredient count="1" id="7713" />
 		<!-- Ancient Adena -->
 		<ingredient count="35700" id="5575" />
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<production count="1" id="202" />
 	</item>
 	<item>
-		<!-- Mace of the Underworld - Magic Silence -->
+		<!-- Mace of Underworld - Magic Silence -->
 		<ingredient count="1" id="7714" />
 		<!-- Ancient Adena -->
 		<ingredient count="35700" id="5575" />
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<production count="1" id="202" />
 	</item>
 	<item>
-		<!-- Mace of the Underworld - Conversion -->
+		<!-- Mace of Underworld - Conversion -->
 		<ingredient count="1" id="7715" />
 		<!-- Ancient Adena -->
 		<ingredient count="35700" id="5575" />
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<production count="1" id="202" />
 	</item>
 	<item>
@@ -1321,7 +1321,7 @@
 		<production count="1" id="7888" />
 	</item>
 	<item>
-		<!-- Ecliptic Sword - Magic Power -->
+		<!-- Ecliptic Sword - M. Atk. -->
 		<ingredient count="1" id="8115" />
 		<!-- Ancient Adena -->
 		<ingredient count="83250" id="5575" />
@@ -1425,7 +1425,7 @@
 		<production count="1" id="7891" />
 	</item>
 	<item>
-		<!-- Ecliptic Axe - Magic Power -->
+		<!-- Ecliptic Axe - M. Atk. -->
 		<ingredient count="1" id="8139" />
 		<!-- Ancient Adena -->
 		<ingredient count="83250" id="5575" />
@@ -1713,7 +1713,7 @@
 		<production count="1" id="7892" />
 	</item>
 	<item>
-		<!-- Spell Breaker - Magic Mental Shield -->
+		<!-- Spell Breaker - Mental Shield -->
 		<ingredient count="1" id="8142" />
 		<!-- Ancient Adena -->
 		<ingredient count="111000" id="5575" />
@@ -1977,7 +1977,7 @@
 		<production count="1" id="7889" />
 	</item>
 	<item>
-		<!-- Wizard's Tear - Magic Power -->
+		<!-- Wizard's Tear - M. Atk. -->
 		<ingredient count="1" id="8118" />
 		<!-- Ancient Adena -->
 		<ingredient count="169500" id="5575" />
@@ -1993,35 +1993,35 @@
 		<production count="1" id="7889" />
 	</item>
 	<item>
-		<!-- Demon Dagger - Critical Bleed -->
+		<!-- Demon's Dagger - Critical Bleed -->
 		<ingredient count="1" id="4780" />
 		<!-- Ancient Adena -->
 		<ingredient count="169500" id="5575" />
-		<!-- Demon Dagger -->
+		<!-- Demon's Dagger -->
 		<production count="1" id="234" />
 	</item>
 	<item>
-		<!-- Demon Dagger - Critical Poison -->
+		<!-- Demon's Dagger - Critical Poison -->
 		<ingredient count="1" id="4781" />
 		<!-- Ancient Adena -->
 		<ingredient count="169500" id="5575" />
-		<!-- Demon Dagger -->
+		<!-- Demon's Dagger -->
 		<production count="1" id="234" />
 	</item>
 	<item>
-		<!-- Demon Dagger - Critical Damage -->
+		<!-- Demon's Dagger - Critical Damage -->
 		<ingredient count="1" id="6359" />
 		<!-- Ancient Adena -->
 		<ingredient count="169500" id="5575" />
-		<!-- Demon Dagger -->
+		<!-- Demon's Dagger -->
 		<production count="1" id="234" />
 	</item>
 	<item>
-		<!-- Demon Dagger - Mortal Strike -->
+		<!-- Demon's Dagger - Mortal Strike -->
 		<ingredient count="1" id="4782" />
 		<!-- Ancient Adena -->
 		<ingredient count="169500" id="5575" />
-		<!-- Demon Dagger -->
+		<!-- Demon's Dagger -->
 		<production count="1" id="234" />
 	</item>
 	<item>
@@ -2201,7 +2201,7 @@
 		<production count="1" id="145" />
 	</item>
 	<item>
-		<!-- Sword of Whispering Death - Magic Power -->
+		<!-- Sword of Whispering Death - M. Atk. -->
 		<ingredient count="1" id="6311" />
 		<!-- Ancient Adena -->
 		<ingredient count="45900" id="5575" />
@@ -2649,7 +2649,7 @@
 		<production count="1" id="80" />
 	</item>
 	<item>
-		<!-- Elemental Sword - Magic Power -->
+		<!-- Elemental Sword - M. Atk. -->
 		<ingredient count="1" id="5638" />
 		<!-- Ancient Adena -->
 		<ingredient count="210000" id="5575" />
@@ -2673,7 +2673,7 @@
 		<production count="1" id="150" />
 	</item>
 	<item>
-		<!-- Sword of Miracles - Magic Power -->
+		<!-- Sword of Miracles - M. Atk. -->
 		<ingredient count="1" id="5641" />
 		<!-- Ancient Adena -->
 		<ingredient count="200000" id="5575" />
@@ -2777,7 +2777,7 @@
 		<production count="1" id="7895" />
 	</item>
 	<item>
-		<!-- Flaming Dragon Skull - Magic Power -->
+		<!-- Flaming Dragon Skull - M. Atk. -->
 		<ingredient count="1" id="8151" />
 		<!-- Ancient Adena -->
 		<ingredient count="200000" id="5575" />
@@ -2993,7 +2993,7 @@
 		<production count="1" id="8686" />
 	</item>
 	<item>
-		<!-- Themis' Tongue - Magic Mental Shield -->
+		<!-- Themis' Tongue - Mental Shield -->
 		<ingredient count="1" id="8813" />
 		<!-- Ancient Adena -->
 		<ingredient count="210000" id="5575" />
@@ -3049,7 +3049,7 @@
 		<production count="1" id="8688" />
 	</item>
 	<item>
-		<!-- Daimon Crystal - Magic Mental Shield -->
+		<!-- Daimon Crystal - Mental Shield -->
 		<ingredient count="1" id="8820" />
 		<!-- Ancient Adena -->
 		<ingredient count="210000" id="5575" />
@@ -3977,7 +3977,7 @@
 		<production count="1" id="10942" />
 	</item>
 	<item>
-		<!-- Hell Knife - Confusion - Magic Mental Shield -->
+		<!-- Hell Knife - Confusion - Mental Shield -->
 		<ingredient count="1" id="10944" />
 		<!-- Ancient Adena -->
 		<ingredient count="111000" id="5575" />
@@ -4001,7 +4001,7 @@
 		<production count="1" id="10898" />
 	</item>
 	<item>
-		<!-- Spell Breaker - Hail - Magic Mental Shield -->
+		<!-- Spell Breaker - Hail - Mental Shield -->
 		<ingredient count="1" id="10900" />
 		<!-- Ancient Adena -->
 		<ingredient count="111000" id="5575" />
@@ -4121,7 +4121,7 @@
 		<production count="1" id="10916" />
 	</item>
 	<item>
-		<!-- Sprite's Staff - Hail - Magic Mental Shield -->
+		<!-- Sprite's Staff - Hail - Mental Shield -->
 		<ingredient count="1" id="10918" />
 		<!-- Ancient Adena -->
 		<ingredient count="111000" id="5575" />
@@ -4265,7 +4265,7 @@
 		<production count="1" id="11005" />
 	</item>
 	<item>
-		<!-- Wizard's Tear - Cleverness - Magic Power -->
+		<!-- Wizard's Tear - Cleverness - M. Atk. -->
 		<ingredient count="1" id="11007" />
 		<!-- Ancient Adena -->
 		<ingredient count="169500" id="5575" />
@@ -4281,35 +4281,35 @@
 		<production count="1" id="11005" />
 	</item>
 	<item>
-		<!-- Demon Dagger - Great Gale - Critical Bleed -->
+		<!-- Demon's Dagger - Great Gale - Critical Bleed -->
 		<ingredient count="1" id="10993" />
 		<!-- Ancient Adena -->
 		<ingredient count="169500" id="5575" />
-		<!-- Demon Dagger - Great Gale -->
+		<!-- Demon's Dagger - Great Gale -->
 		<production count="1" id="10992" />
 	</item>
 	<item>
-		<!-- Demon Dagger - Great Gale - Critical Poison -->
+		<!-- Demon's Dagger - Great Gale - Critical Poison -->
 		<ingredient count="1" id="10994" />
 		<!-- Ancient Adena -->
 		<ingredient count="169500" id="5575" />
-		<!-- Demon Dagger - Great Gale -->
+		<!-- Demon's Dagger - Great Gale -->
 		<production count="1" id="10992" />
 	</item>
 	<item>
-		<!-- Demon Dagger - Great Gale - Critical Damage -->
+		<!-- Demon's Dagger - Great Gale - Critical Damage -->
 		<ingredient count="1" id="10996" />
 		<!-- Ancient Adena -->
 		<ingredient count="169500" id="5575" />
-		<!-- Demon Dagger - Great Gale -->
+		<!-- Demon's Dagger - Great Gale -->
 		<production count="1" id="10992" />
 	</item>
 	<item>
-		<!-- Demon Dagger - Great Gale - Mortal Strike -->
+		<!-- Demon's Dagger - Great Gale - Mortal Strike -->
 		<ingredient count="1" id="10995" />
 		<!-- Ancient Adena -->
 		<ingredient count="169500" id="5575" />
-		<!-- Demon Dagger - Great Gale -->
+		<!-- Demon's Dagger - Great Gale -->
 		<production count="1" id="10992" />
 	</item>
 	<item>
@@ -4377,7 +4377,7 @@
 		<production count="1" id="10967" />
 	</item>
 	<item>
-		<!-- Lance - Earth - Long Blow -->
+		<!-- Lance - Earth - Towering Blow -->
 		<ingredient count="1" id="10970" />
 		<!-- Ancient Adena -->
 		<ingredient count="169500" id="5575" />
@@ -4841,7 +4841,7 @@
 		<production count="1" id="11058" />
 	</item>
 	<item>
-		<!-- Elemental Sword - Hail - Magic Power -->
+		<!-- Elemental Sword - Hail - M. Atk. -->
 		<ingredient count="1" id="11042" />
 		<!-- Ancient Adena -->
 		<ingredient count="210000" id="5575" />
@@ -4865,7 +4865,7 @@
 		<production count="1" id="11041" />
 	</item>
 	<item>
-		<!-- Sword of Miracles - Holy Spirit - Magic Power -->
+		<!-- Sword of Miracles - Holy Spirit - M. Atk. -->
 		<ingredient count="1" id="11109" />
 		<!-- Ancient Adena -->
 		<ingredient count="200000" id="5575" />
@@ -4913,27 +4913,27 @@
 		<production count="1" id="11096" />
 	</item>
 	<item>
-		<!-- Dark Legion - Thunder - Critical Damage -->
+		<!-- Dark Legion's Edge - Thunder - Critical Damage -->
 		<ingredient count="1" id="11081" />
 		<!-- Ancient Adena -->
 		<ingredient count="200000" id="5575" />
-		<!-- Dark Legion - Thunder -->
+		<!-- Dark Legion's Edge - Thunder -->
 		<production count="1" id="11080" />
 	</item>
 	<item>
-		<!-- Dark Legion - Thunder - Health -->
+		<!-- Dark Legion's Edge - Thunder - Health -->
 		<ingredient count="1" id="11082" />
 		<!-- Ancient Adena -->
 		<ingredient count="200000" id="5575" />
-		<!-- Dark Legion - Thunder -->
+		<!-- Dark Legion's Edge - Thunder -->
 		<production count="1" id="11080" />
 	</item>
 	<item>
-		<!-- Dark Legion - Thunder - Rsk. Focus -->
+		<!-- Dark Legion's Edge - Thunder - Rsk. Focus -->
 		<ingredient count="1" id="11083" />
 		<!-- Ancient Adena -->
 		<ingredient count="200000" id="5575" />
-		<!-- Dark Legion - Thunder -->
+		<!-- Dark Legion's Edge - Thunder -->
 		<production count="1" id="11080" />
 	</item>
 	<item>
@@ -4969,7 +4969,7 @@
 		<production count="1" id="11100" />
 	</item>
 	<item>
-		<!-- Flaming Dragon Skull - Wisdom - Magic Power -->
+		<!-- Flaming Dragon Skull - Wisdom - M. Atk. -->
 		<ingredient count="1" id="11102" />
 		<!-- Ancient Adena -->
 		<ingredient count="200000" id="5575" />
@@ -5113,7 +5113,7 @@
 		<production count="1" id="11177" />
 	</item>
 	<item>
-		<!-- Tiphon's Spear - Landslide - Long Blow -->
+		<!-- Tiphon's Spear - Landslide - Towering Blow -->
 		<ingredient count="1" id="11179" />
 		<!-- Ancient Adena -->
 		<ingredient count="210000" id="5575" />
@@ -5185,7 +5185,7 @@
 		<production count="1" id="11182" />
 	</item>
 	<item>
-		<!-- Themis' Tongue - Cleverness - Magic Mental Shield -->
+		<!-- Themis' Tongue - Cleverness - Mental Shield -->
 		<ingredient count="1" id="11184" />
 		<!-- Ancient Adena -->
 		<ingredient count="210000" id="5575" />
@@ -5241,7 +5241,7 @@
 		<production count="1" id="11137" />
 	</item>
 	<item>
-		<!-- Daimon Crystal - Wisdom - Magic Mental Shield -->
+		<!-- Daimon Crystal - Wisdom - Mental Shield -->
 		<ingredient count="1" id="11140" />
 		<!-- Ancient Adena -->
 		<ingredient count="210000" id="5575" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/310922002.xml b/L2J_DataPack_BETA/dist/game/data/multisell/310922002.xml
index 4244b723c1a38d9be8ef2eee5c894c489ae002a5..2e42d82da696324b9d0a28f8a924f147162c064e 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/310922002.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/310922002.xml
@@ -1,15 +1,15 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="400000" id="57" />
-		<!-- Ancient Book - Divine Inspiration (Modern Language Version) -->
+		<!-- Ancient Book: Divine Inspiration (Modern Language Version) -->
 		<production count="1" id="8618" />
 	</item>
 	<item>
 		<!-- Ancient Adena -->
 		<ingredient count="660000" id="5575" />
-		<!-- Transform Sealbook - Death Blader -->
+		<!-- Transformation Sealbook: Death Blader -->
 		<production count="1" id="9649" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/311132501.xml b/L2J_DataPack_BETA/dist/game/data/multisell/311132501.xml
index daa8593392a06a5e288cac2e43897f780112103b..3ac03c7fec9ac03bdba3576773f157dda5465a17 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/311132501.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/311132501.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="100000" id="57" />
@@ -11,7 +11,7 @@
 		<ingredient count="240000" id="5575" />
 		<!-- Blank Scroll -->
 		<ingredient count="480" id="5965" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -19,7 +19,7 @@
 		<ingredient count="80000" id="5575" />
 		<!-- Blank Scroll -->
 		<ingredient count="160" id="5965" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -27,7 +27,7 @@
 		<ingredient count="15000" id="5575" />
 		<!-- Blank Scroll -->
 		<ingredient count="30" id="5965" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -35,7 +35,7 @@
 		<ingredient count="6000" id="5575" />
 		<!-- Blank Scroll -->
 		<ingredient count="12" id="5965" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -43,7 +43,7 @@
 		<ingredient count="50000" id="5575" />
 		<!-- Blank Scroll -->
 		<ingredient count="100" id="5965" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -51,7 +51,7 @@
 		<ingredient count="110000" id="5575" />
 		<!-- Blank Scroll -->
 		<ingredient count="220" id="5965" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -59,7 +59,7 @@
 		<ingredient count="500000" id="5575" />
 		<!-- Blank Scroll -->
 		<ingredient count="1000" id="5965" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/311262501.xml b/L2J_DataPack_BETA/dist/game/data/multisell/311262501.xml
index 4982031b5d8a816d40f9264794fe6bd3de00b02c..9de25bac6312b6ef6a5eaa196750dc33410546ac 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/311262501.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/311262501.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Forgotten Blade -->
 		<ingredient count="1" id="6364" />
@@ -331,33 +331,33 @@
 		<production count="1" id="9371" />
 	</item>
 	<item>
-		<!-- Sarnga -->
+		<!-- Sarunga -->
 		<ingredient count="1" id="9372" />
 		<!-- Red Soul Crystal: Stage 13 -->
 		<ingredient count="1" id="5908" />
 		<!-- Gemstone S -->
 		<ingredient count="82" id="2134" />
-		<!-- Sarnga - Cheap Shot -->
+		<!-- Sarunga - Cheap Shot -->
 		<production count="1" id="9373" />
 	</item>
 	<item>
-		<!-- Sarnga -->
+		<!-- Sarunga -->
 		<ingredient count="1" id="9372" />
 		<!-- Green Soul Crystal: Stage 13 -->
 		<ingredient count="1" id="5911" />
 		<!-- Gemstone S -->
 		<ingredient count="82" id="2134" />
-		<!-- Sarnga - Focus -->
+		<!-- Sarunga - Focus -->
 		<production count="1" id="9374" />
 	</item>
 	<item>
-		<!-- Sarnga -->
+		<!-- Sarunga -->
 		<ingredient count="1" id="9372" />
 		<!-- Blue Soul Crystal: Stage 13 -->
 		<ingredient count="1" id="5914" />
 		<!-- Gemstone S -->
 		<ingredient count="82" id="2134" />
-		<!-- Sarnga - Critical Slow -->
+		<!-- Sarunga - Critical Slow -->
 		<production count="1" id="9375" />
 	</item>
 	<item>
@@ -2701,33 +2701,33 @@
 		<production count="1" id="14151" />
 	</item>
 	<item>
-		<!-- Vesper Sheutjeh -->
+		<!-- Vesper Shooter -->
 		<ingredient count="1" id="13469" />
 		<!-- Blue Soul Crystal - Stage 16 -->
 		<ingredient count="1" id="13072" />
 		<!-- Gemstone S -->
 		<ingredient count="623" id="2134" />
-		<!-- Vesper Sheutjeh - Focus -->
+		<!-- Vesper Shooter - Focus -->
 		<production count="1" id="14155" />
 	</item>
 	<item>
-		<!-- Vesper Sheutjeh -->
+		<!-- Vesper Shooter -->
 		<ingredient count="1" id="13469" />
 		<!-- Green Soul Crystal - Stage 16 -->
 		<ingredient count="1" id="13073" />
 		<!-- Gemstone S -->
 		<ingredient count="623" id="2134" />
-		<!-- Vesper Sheutjeh - Critical Slow -->
+		<!-- Vesper Shooter - Critical Slow -->
 		<production count="1" id="14156" />
 	</item>
 	<item>
-		<!-- Vesper Sheutjeh -->
+		<!-- Vesper Shooter -->
 		<ingredient count="1" id="13469" />
 		<!-- Red Soul Crystal - Stage 16 -->
 		<ingredient count="1" id="13071" />
 		<!-- Gemstone S -->
 		<ingredient count="623" id="2134" />
-		<!-- Vesper Sheutjeh - Cheap Shot -->
+		<!-- Vesper Shooter - Cheap Shot -->
 		<production count="1" id="14154" />
 	</item>
 	<item>
@@ -2837,7 +2837,7 @@
 		<ingredient count="1" id="13073" />
 		<!-- Gemstone S -->
 		<ingredient count="623" id="2134" />
-		<!-- Vesper Fighter - Gale - Crt. Stun -->
+		<!-- Vesper Fighter - Gale - Critical Stun -->
 		<production count="1" id="16070" />
 	</item>
 	<item>
@@ -2907,7 +2907,7 @@
 		<ingredient count="1" id="13072" />
 		<!-- Gemstone S -->
 		<ingredient count="623" id="2134" />
-		<!-- Vesper Shaper - Gale - Crt. Damage -->
+		<!-- Vesper Shaper - Gale - Critical Damage -->
 		<production count="1" id="16065" />
 	</item>
 	<item>
@@ -3031,33 +3031,33 @@
 		<production count="1" id="16080" />
 	</item>
 	<item>
-		<!-- Vesper Singer - Tidal Wave -->
+		<!-- Vesper Singer - Hail -->
 		<ingredient count="1" id="16051" />
 		<!-- Red Soul Crystal - Stage 16 -->
 		<ingredient count="1" id="13071" />
 		<!-- Gemstone S -->
 		<ingredient count="623" id="2134" />
-		<!-- Vesper Singer - Tidal Wave - Empower -->
+		<!-- Vesper Singer - Hail - Empower -->
 		<production count="1" id="16083" />
 	</item>
 	<item>
-		<!-- Vesper Singer - Tidal Wave -->
+		<!-- Vesper Singer - Hail -->
 		<ingredient count="1" id="16051" />
 		<!-- Green Soul Crystal - Stage 16 -->
 		<ingredient count="1" id="13073" />
 		<!-- Gemstone S -->
 		<ingredient count="623" id="2134" />
-		<!-- Vesper Singer - Tidal Wave - MP Regeneration -->
+		<!-- Vesper Singer - Hail - MP Regeneration -->
 		<production count="1" id="16084" />
 	</item>
 	<item>
-		<!-- Vesper Singer - Tidal Wave -->
+		<!-- Vesper Singer - Hail -->
 		<ingredient count="1" id="16051" />
 		<!-- Blue Soul Crystal - Stage 16 -->
 		<ingredient count="1" id="13072" />
 		<!-- Gemstone S -->
 		<ingredient count="623" id="2134" />
-		<!-- Vesper Singer - Tidal Wave - Magic Hold -->
+		<!-- Vesper Singer - Hail - Magic Hold -->
 		<production count="1" id="16085" />
 	</item>
 	<item>
@@ -3087,7 +3087,7 @@
 		<ingredient count="1" id="13073" />
 		<!-- Gemstone S -->
 		<ingredient count="623" id="2134" />
-		<!-- Vesper Thrower - Clairvoyance - Crt. Slow -->
+		<!-- Vesper Thrower - Clairvoyance - Critical Slow -->
 		<production count="1" id="16088" />
 	</item>
 	<item>
@@ -3121,33 +3121,33 @@
 		<production count="1" id="16089" />
 	</item>
 	<item>
-		<!-- Vesper Schutze - Clairvoyance -->
+		<!-- Vesper Shooter - Clairvoyance -->
 		<ingredient count="1" id="16054" />
 		<!-- Blue Soul Crystal - Stage 16 -->
 		<ingredient count="1" id="13072" />
 		<!-- Gemstone S -->
 		<ingredient count="623" id="2134" />
-		<!-- Vesper Schutze - Clairvoyance - Focus -->
+		<!-- Vesper Shooter - Clairvoyance - Focus -->
 		<production count="1" id="16093" />
 	</item>
 	<item>
-		<!-- Vesper Schutze - Clairvoyance -->
+		<!-- Vesper Shooter - Clairvoyance -->
 		<ingredient count="1" id="16054" />
 		<!-- Green Soul Crystal - Stage 16 -->
 		<ingredient count="1" id="13073" />
 		<!-- Gemstone S -->
 		<ingredient count="623" id="2134" />
-		<!-- Vesper Schutze - Clairvoyance - Crt. Slow -->
+		<!-- Vesper Shooter - Clairvoyance - Critical Slow -->
 		<production count="1" id="16094" />
 	</item>
 	<item>
-		<!-- Vesper Schutze - Clairvoyance -->
+		<!-- Vesper Shooter - Clairvoyance -->
 		<ingredient count="1" id="16054" />
 		<!-- Red Soul Crystal - Stage 16 -->
 		<ingredient count="1" id="13071" />
 		<!-- Gemstone S -->
 		<ingredient count="623" id="2134" />
-		<!-- Vesper Schutze - Clairvoyance - Cheap Shot -->
+		<!-- Vesper Shooter - Clairvoyance - Cheap Shot -->
 		<production count="1" id="16092" />
 	</item>
 	<item>
@@ -3227,7 +3227,7 @@
 		<ingredient count="1" id="15543" />
 		<!-- Gemstone S -->
 		<ingredient count="1073" id="2134" />
-		<!-- Skull Edge - Crt. Damage -->
+		<!-- Skull Edge - Critical Damage -->
 		<production count="1" id="15834" />
 	</item>
 	<item>
@@ -3337,7 +3337,7 @@
 		<ingredient count="1" id="15541" />
 		<!-- Gemstone S -->
 		<ingredient count="1073" id="2134" />
-		<!-- Octo Claw - Crt. Stun -->
+		<!-- Octo Claw - Critical Stun -->
 		<production count="1" id="15845" />
 	</item>
 	<item>
@@ -3487,7 +3487,7 @@
 		<ingredient count="1" id="15541" />
 		<!-- Gemstone S -->
 		<ingredient count="1073" id="2134" />
-		<!-- Skull Carnium Bow - Crt. Slow -->
+		<!-- Skull Carnium Bow - Critical Slow -->
 		<production count="1" id="15860" />
 	</item>
 	<item>
@@ -3577,7 +3577,7 @@
 		<ingredient count="1" id="15541" />
 		<!-- Gemstone S -->
 		<ingredient count="1073" id="2134" />
-		<!-- Dominion Crossbow - Crt. Slow -->
+		<!-- Dominion Crossbow - Critical Slow -->
 		<production count="1" id="15869" />
 	</item>
 	<item>
@@ -3657,7 +3657,7 @@
 		<ingredient count="1" id="15827" />
 		<!-- Gemstone S -->
 		<ingredient count="2022" id="2134" />
-		<!-- Mamba Edge - Crt. Damage -->
+		<!-- Mamba Edge - Critical Damage -->
 		<production count="1" id="15875" />
 	</item>
 	<item>
@@ -3767,7 +3767,7 @@
 		<ingredient count="1" id="15828" />
 		<!-- Gemstone S -->
 		<ingredient count="2022" id="2134" />
-		<!-- Jade Claw - Crt. Stun -->
+		<!-- Jade Claw - Critical Stun -->
 		<production count="1" id="15886" />
 	</item>
 	<item>
@@ -3917,7 +3917,7 @@
 		<ingredient count="1" id="15828" />
 		<!-- Gemstone S -->
 		<ingredient count="2022" id="2134" />
-		<!-- Recurve Thorne Bow - Crt. Slow -->
+		<!-- Recurve Thorne Bow - Critical Slow -->
 		<production count="1" id="15901" />
 	</item>
 	<item>
@@ -4007,7 +4007,7 @@
 		<ingredient count="1" id="15828" />
 		<!-- Gemstone S -->
 		<ingredient count="2022" id="2134" />
-		<!-- Thorne Crossbow - Crt. Slow -->
+		<!-- Thorne Crossbow - Critical Slow -->
 		<production count="1" id="15910" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/311262502.xml b/L2J_DataPack_BETA/dist/game/data/multisell/311262502.xml
index bb112fa7a84718945c9968582165ce899dee880a..2e8a20698ed6c3ea8a0191fba0859b281aab990f 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/311262502.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/311262502.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Keshanberk -->
 		<ingredient count="1" id="142" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/311262503.xml b/L2J_DataPack_BETA/dist/game/data/multisell/311262503.xml
index b2c3b6de5ae743da7650527634246c4b1d6467f2..ea3bcca0a638228b321befd7dd01152b0a92bd3e 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/311262503.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/311262503.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Vesper Cutter -->
 		<ingredient count="1" id="13457" />
@@ -87,7 +87,7 @@
 	<item>
 		<!-- Tallum Blade -->
 		<ingredient count="1" id="80" />
-		<!-- Dark Legion - Thunder -->
+		<!-- Dark Legion's Edge - Thunder -->
 		<ingredient count="1" id="11080" />
 		<!-- Dualsword Craft Stamp -->
 		<ingredient count="1" id="5126" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/311262504.xml b/L2J_DataPack_BETA/dist/game/data/multisell/311262504.xml
index 3c58b482ac184095746b90a84191709a6f55cfb0..82f687b440f1fb32a8a73ca6dbb1e24f8b5100d3 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/311262504.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/311262504.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Sealed Dynasty Breast Plate -->
 		<ingredient count="1" id="9514" />
@@ -13,7 +13,7 @@
 		<ingredient count="1" id="9515" />
 		<!-- Ancient Adena -->
 		<ingredient count="1144000" id="5575" />
-		<!-- Dynasty Gaiter -->
+		<!-- Dynasty Gaiters -->
 		<production count="1" id="9421" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/311262505.xml b/L2J_DataPack_BETA/dist/game/data/multisell/311262505.xml
index 9771d2af404b1d0bc8dc5426454bb06adf6fd82b..afebbb927669cfa5f8fa5db0fe61cbf96c7546c5 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/311262505.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/311262505.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Sealed Tateossian Earring -->
 		<ingredient count="1" id="6724" />
@@ -77,7 +77,7 @@
 		<ingredient count="1" id="11604" />
 		<!-- Ancient Adena -->
 		<ingredient count="1924000" id="5575" />
-		<!-- Dynasty Earring -->
+		<!-- Dynasty Earrings -->
 		<production count="1" id="11601" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/311262506.xml b/L2J_DataPack_BETA/dist/game/data/multisell/311262506.xml
index 0fe37f9461ae746f6b4a2dcca09931d59e6605d7..acf13b164f7989c31ec9314d3c7e11f7a25713e0 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/311262506.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/311262506.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Sealed Dark Crystal breastplate -->
 		<ingredient count="1" id="5287" />
@@ -101,15 +101,15 @@
 		<ingredient count="1" id="5320" />
 		<!-- Adena -->
 		<ingredient count="579750" id="57" />
-		<!-- Nightmarish Leather Armor -->
+		<!-- Leather Armor of Nightmare -->
 		<production count="1" id="2394" />
 	</item>
 	<item>
-		<!-- Sealed Nightmare Robe -->
+		<!-- Sealed Robe of Nightmare -->
 		<ingredient count="1" id="5326" />
 		<!-- Adena -->
 		<ingredient count="579750" id="57" />
-		<!-- Nightmare Robe -->
+		<!-- Robe of Nightmare -->
 		<production count="1" id="2408" />
 	</item>
 	<item>
@@ -445,7 +445,7 @@
 		<ingredient count="1" id="11421" />
 		<!-- Adena -->
 		<ingredient count="87000" id="57" />
-		<!-- Dark Crystal Gloves - Heavy Armor Use -->
+		<!-- Dark Crystal Gloves - Heavy Armor -->
 		<production count="1" id="11408" />
 	</item>
 	<item>
@@ -461,7 +461,7 @@
 		<ingredient count="1" id="11421" />
 		<!-- Adena -->
 		<ingredient count="87000" id="57" />
-		<!-- Dark Crystal Gloves - Robe Use -->
+		<!-- Dark Crystal Gloves - Robe -->
 		<production count="1" id="11410" />
 	</item>
 	<item>
@@ -469,7 +469,7 @@
 		<ingredient count="1" id="11424" />
 		<!-- Adena -->
 		<ingredient count="87000" id="57" />
-		<!-- Dark Crystal Boots - Heavy Armor Use -->
+		<!-- Dark Crystal Boots - Heavy Armor -->
 		<production count="1" id="11413" />
 	</item>
 	<item>
@@ -485,7 +485,7 @@
 		<ingredient count="1" id="11424" />
 		<!-- Adena -->
 		<ingredient count="87000" id="57" />
-		<!-- Dark Crystal Boots - Robe Use -->
+		<!-- Dark Crystal Boots - Robe -->
 		<production count="1" id="11415" />
 	</item>
 	<item>
@@ -493,7 +493,7 @@
 		<ingredient count="1" id="11429" />
 		<!-- Adena -->
 		<ingredient count="87000" id="57" />
-		<!-- Tallum Gloves - Heavy Armor Use -->
+		<!-- Tallum Gloves - Heavy Armor -->
 		<production count="1" id="11437" />
 	</item>
 	<item>
@@ -509,7 +509,7 @@
 		<ingredient count="1" id="11429" />
 		<!-- Adena -->
 		<ingredient count="87000" id="57" />
-		<!-- Tallum Gloves - Robe Use -->
+		<!-- Tallum Gloves - Robe -->
 		<production count="1" id="11439" />
 	</item>
 	<item>
@@ -517,7 +517,7 @@
 		<ingredient count="1" id="11431" />
 		<!-- Adena -->
 		<ingredient count="87000" id="57" />
-		<!-- Tallum Boots - Heavy Armor Use -->
+		<!-- Tallum Boots - Heavy Armor -->
 		<production count="1" id="11441" />
 	</item>
 	<item>
@@ -533,7 +533,7 @@
 		<ingredient count="1" id="11431" />
 		<!-- Adena -->
 		<ingredient count="87000" id="57" />
-		<!-- Tallum Boots - Robe Use -->
+		<!-- Tallum Boots - Robe -->
 		<production count="1" id="11443" />
 	</item>
 	<item>
@@ -541,7 +541,7 @@
 		<ingredient count="1" id="11465" />
 		<!-- Adena -->
 		<ingredient count="132000" id="57" />
-		<!-- Gauntlet of Nightmare - Heavy Armor Use -->
+		<!-- Gauntlet of Nightmare - Heavy Armor -->
 		<production count="1" id="11472" />
 	</item>
 	<item>
@@ -557,7 +557,7 @@
 		<ingredient count="1" id="11465" />
 		<!-- Adena -->
 		<ingredient count="132000" id="57" />
-		<!-- Gauntlet of Nightmare - Robe Use -->
+		<!-- Gauntlet of Nightmare - Robe -->
 		<production count="1" id="11474" />
 	</item>
 	<item>
@@ -565,7 +565,7 @@
 		<ingredient count="1" id="11468" />
 		<!-- Adena -->
 		<ingredient count="132000" id="57" />
-		<!-- Boots of Nightmare - Heavy Armor Use -->
+		<!-- Boots of Nightmare - Heavy Armor -->
 		<production count="1" id="11477" />
 	</item>
 	<item>
@@ -581,7 +581,7 @@
 		<ingredient count="1" id="11468" />
 		<!-- Adena -->
 		<ingredient count="132000" id="57" />
-		<!-- Boots of Nightmare - Robe Use -->
+		<!-- Boots of Nightmare - Robe -->
 		<production count="1" id="11479" />
 	</item>
 	<item>
@@ -589,7 +589,7 @@
 		<ingredient count="1" id="11458" />
 		<!-- Adena -->
 		<ingredient count="132000" id="57" />
-		<!-- Majestic Gauntlet - Heavy Armor Use -->
+		<!-- Majestic Gauntlet - Heavy Armor -->
 		<production count="1" id="11448" />
 	</item>
 	<item>
@@ -605,7 +605,7 @@
 		<ingredient count="1" id="11458" />
 		<!-- Adena -->
 		<ingredient count="132000" id="57" />
-		<!-- Majestic Gauntlet - Robe Use -->
+		<!-- Majestic Gauntlet - Robe -->
 		<production count="1" id="11450" />
 	</item>
 	<item>
@@ -613,7 +613,7 @@
 		<ingredient count="1" id="11461" />
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Majestic Boots - Heavy Armor Use -->
+		<!-- Majestic Boots - Heavy Armor -->
 		<production count="1" id="11453" />
 	</item>
 	<item>
@@ -629,7 +629,7 @@
 		<ingredient count="1" id="11461" />
 		<!-- Adena -->
 		<ingredient count="132000" id="57" />
-		<!-- Majestic Boots - Robe Use -->
+		<!-- Majestic Boots - Robe -->
 		<production count="1" id="11455" />
 	</item>
 	<item>
@@ -649,11 +649,11 @@
 		<production count="1" id="11407" />
 	</item>
 	<item>
-		<!-- Sealed Dark Crystal Helmet - Heavy Armor Use -->
+		<!-- Sealed Dark Crystal Helmet - Heavy Armor -->
 		<ingredient count="1" id="11426" />
 		<!-- Adena -->
 		<ingredient count="130500" id="57" />
-		<!-- Dark Crystal Helmet - Heavy Armor Use -->
+		<!-- Dark Crystal Helmet - Heavy Armor -->
 		<production count="1" id="11417" />
 	</item>
 	<item>
@@ -665,11 +665,11 @@
 		<production count="1" id="12986" />
 	</item>
 	<item>
-		<!-- Sealed Dark Crystal Helmet - Robe Use -->
+		<!-- Sealed Dark Crystal Helmet - Robe -->
 		<ingredient count="1" id="12995" />
 		<!-- Adena -->
 		<ingredient count="130500" id="57" />
-		<!-- Dark Crystal Helmet - Robe Use -->
+		<!-- Dark Crystal Helmet - Robe -->
 		<production count="1" id="12987" />
 	</item>
 	<item>
@@ -705,11 +705,11 @@
 		<production count="1" id="11445" />
 	</item>
 	<item>
-		<!-- Sealed Tallum Helmet - Heavy Armor Use -->
+		<!-- Sealed Tallum Helmet - Heavy Armor -->
 		<ingredient count="1" id="11434" />
 		<!-- Adena -->
 		<ingredient count="130500" id="57" />
-		<!-- Tallum Helmet - Heavy Armor Use -->
+		<!-- Tallum Helmet - Heavy Armor -->
 		<production count="1" id="11446" />
 	</item>
 	<item>
@@ -721,11 +721,11 @@
 		<production count="1" id="12988" />
 	</item>
 	<item>
-		<!-- Sealed Tallum Helmet - Robe Use -->
+		<!-- Sealed Tallum Helmet - Robe -->
 		<ingredient count="1" id="12997" />
 		<!-- Adena -->
 		<ingredient count="130500" id="57" />
-		<!-- Tallum Helmet - Robe Use -->
+		<!-- Tallum Helmet - Robe -->
 		<production count="1" id="12989" />
 	</item>
 	<item>
@@ -757,15 +757,15 @@
 		<ingredient count="1" id="11466" />
 		<!-- Adena -->
 		<ingredient count="579750" id="57" />
-		<!-- Nightmarish Leather Armor -->
+		<!-- Leather Armor of Nightmare -->
 		<production count="1" id="11475" />
 	</item>
 	<item>
-		<!-- Sealed Nightmare Robe -->
+		<!-- Sealed Robe of Nightmare -->
 		<ingredient count="1" id="11467" />
 		<!-- Adena -->
 		<ingredient count="579750" id="57" />
-		<!-- Nightmare Robe -->
+		<!-- Robe of Nightmare -->
 		<production count="1" id="11476" />
 	</item>
 	<item>
@@ -777,11 +777,11 @@
 		<production count="1" id="11471" />
 	</item>
 	<item>
-		<!-- Sealed Helm of Nightmare - Heavy Armor Use -->
+		<!-- Sealed Helm of Nightmare - Heavy Armor -->
 		<ingredient count="1" id="11470" />
 		<!-- Adena -->
 		<ingredient count="198000" id="57" />
-		<!-- Helm of Nightmare - Heavy Armor Use -->
+		<!-- Helm of Nightmare - Heavy Armor -->
 		<production count="1" id="11481" />
 	</item>
 	<item>
@@ -793,11 +793,11 @@
 		<production count="1" id="12992" />
 	</item>
 	<item>
-		<!-- Sealed Helm of Nightmare - Robe Use -->
+		<!-- Sealed Helm of Nightmare - Robe -->
 		<ingredient count="1" id="13001" />
 		<!-- Adena -->
 		<ingredient count="198000" id="57" />
-		<!-- Helm of Nightmare - Robe Use -->
+		<!-- Helm of Nightmare - Robe -->
 		<production count="1" id="12993" />
 	</item>
 	<item>
@@ -809,11 +809,11 @@
 		<production count="1" id="11457" />
 	</item>
 	<item>
-		<!-- Sealed Majestic Circlet - Heavy Armor Use -->
+		<!-- Sealed Majestic Circlet - Heavy Armor -->
 		<ingredient count="1" id="11462" />
 		<!-- Adena -->
 		<ingredient count="198000" id="57" />
-		<!-- Majestic Circlet - Heavy Armor Use -->
+		<!-- Majestic Circlet - Heavy Armor -->
 		<production count="1" id="11456" />
 	</item>
 	<item>
@@ -825,11 +825,11 @@
 		<production count="1" id="12990" />
 	</item>
 	<item>
-		<!-- Sealed Majestic Circlet - Robe Use -->
+		<!-- Sealed Majestic Circlet - Robe -->
 		<ingredient count="1" id="12999" />
 		<!-- Adena -->
 		<ingredient count="198000" id="57" />
-		<!-- Majestic Circlet - Robe Use -->
+		<!-- Majestic Circlet - Robe -->
 		<production count="1" id="12991" />
 	</item>
 	<item>
@@ -917,7 +917,7 @@
 		<ingredient count="1" id="12221" />
 		<!-- Adena -->
 		<ingredient count="3441" id="57" />
-		<!-- Common Item - Dark Crystal Gloves - Heavy Armor Use -->
+		<!-- Common Item - Dark Crystal Gloves - Heavy Armor -->
 		<production count="1" id="12207" />
 	</item>
 	<item>
@@ -933,7 +933,7 @@
 		<ingredient count="1" id="12221" />
 		<!-- Adena -->
 		<ingredient count="3441" id="57" />
-		<!-- Common Item - Dark Crystal Gloves - Robe Use -->
+		<!-- Common Item - Dark Crystal Gloves - Robe -->
 		<production count="1" id="12209" />
 	</item>
 	<item>
@@ -941,7 +941,7 @@
 		<ingredient count="1" id="12224" />
 		<!-- Adena -->
 		<ingredient count="3441" id="57" />
-		<!-- Common Item - Dark Crystal Boots - Heavy Armor Use -->
+		<!-- Common Item - Dark Crystal Boots - Heavy Armor -->
 		<production count="1" id="12212" />
 	</item>
 	<item>
@@ -957,7 +957,7 @@
 		<ingredient count="1" id="12224" />
 		<!-- Adena -->
 		<ingredient count="3441" id="57" />
-		<!-- Common Item - Dark Crystal Boots - Robe Use -->
+		<!-- Common Item - Dark Crystal Boots - Robe -->
 		<production count="1" id="12214" />
 	</item>
 	<item>
@@ -1013,7 +1013,7 @@
 		<ingredient count="1" id="12229" />
 		<!-- Adena -->
 		<ingredient count="3441" id="57" />
-		<!-- Common Item - Tallum Gloves - Heavy Armor Use -->
+		<!-- Common Item - Tallum Gloves - Heavy Armor -->
 		<production count="1" id="12236" />
 	</item>
 	<item>
@@ -1029,7 +1029,7 @@
 		<ingredient count="1" id="12229" />
 		<!-- Adena -->
 		<ingredient count="3441" id="57" />
-		<!-- Common Item - Tallum Gloves - Robe Use -->
+		<!-- Common Item - Tallum Gloves - Robe -->
 		<production count="1" id="12238" />
 	</item>
 	<item>
@@ -1037,7 +1037,7 @@
 		<ingredient count="1" id="12231" />
 		<!-- Adena -->
 		<ingredient count="3441" id="57" />
-		<!-- Common Item - Tallum Boots - Heavy Armor Use -->
+		<!-- Common Item - Tallum Boots - Heavy Armor -->
 		<production count="1" id="12240" />
 	</item>
 	<item>
@@ -1053,7 +1053,7 @@
 		<ingredient count="1" id="12231" />
 		<!-- Adena -->
 		<ingredient count="3441" id="57" />
-		<!-- Common Item - Tallum Boots - Robe Use -->
+		<!-- Common Item - Tallum Boots - Robe -->
 		<production count="1" id="12242" />
 	</item>
 	<item>
@@ -1077,15 +1077,15 @@
 		<ingredient count="1" id="12265" />
 		<!-- Adena -->
 		<ingredient count="26856" id="57" />
-		<!-- Common Item - Nightmarish Leather Armor -->
+		<!-- Common Item - Leather Armor of Nightmare -->
 		<production count="1" id="12274" />
 	</item>
 	<item>
-		<!-- Common Item - Sealed Nightmare Robe -->
+		<!-- Common Item - Sealed Robe of Nightmare -->
 		<ingredient count="1" id="12266" />
 		<!-- Adena -->
 		<ingredient count="26856" id="57" />
-		<!-- Common Item - Nightmare Robe -->
+		<!-- Common Item - Robe of Nightmare -->
 		<production count="1" id="12275" />
 	</item>
 	<item>
@@ -1093,7 +1093,7 @@
 		<ingredient count="1" id="12264" />
 		<!-- Adena -->
 		<ingredient count="5509" id="57" />
-		<!-- Common Item - Gauntlet of Nightmare - Heavy Armor Use -->
+		<!-- Common Item - Gauntlet of Nightmare - Heavy Armor -->
 		<production count="1" id="12271" />
 	</item>
 	<item>
@@ -1109,7 +1109,7 @@
 		<ingredient count="1" id="12264" />
 		<!-- Adena -->
 		<ingredient count="5509" id="57" />
-		<!-- Common Item - Gauntlet of Nightmare - Robe Use -->
+		<!-- Common Item - Gauntlet of Nightmare - Robe -->
 		<production count="1" id="12273" />
 	</item>
 	<item>
@@ -1117,7 +1117,7 @@
 		<ingredient count="1" id="12267" />
 		<!-- Adena -->
 		<ingredient count="5509" id="57" />
-		<!-- Common Item - Boots of Nightmare - Heavy Armor Use -->
+		<!-- Common Item - Boots of Nightmare - Heavy Armor -->
 		<production count="1" id="12276" />
 	</item>
 	<item>
@@ -1133,7 +1133,7 @@
 		<ingredient count="1" id="12267" />
 		<!-- Adena -->
 		<ingredient count="5509" id="57" />
-		<!-- Common Item - Boots of Nightmare - Robe Use -->
+		<!-- Common Item - Boots of Nightmare - Robe -->
 		<production count="1" id="12278" />
 	</item>
 	<item>
@@ -1181,7 +1181,7 @@
 		<ingredient count="1" id="12257" />
 		<!-- Adena -->
 		<ingredient count="5509" id="57" />
-		<!-- Common Item - Majestic Gauntlet - Heavy Armor Use -->
+		<!-- Common Item - Majestic Gauntlet - Heavy Armor -->
 		<production count="1" id="12247" />
 	</item>
 	<item>
@@ -1197,7 +1197,7 @@
 		<ingredient count="1" id="12257" />
 		<!-- Adena -->
 		<ingredient count="5509" id="57" />
-		<!-- Common Item - Majestic Gauntlet - Robe Use -->
+		<!-- Common Item - Majestic Gauntlet - Robe -->
 		<production count="1" id="12249" />
 	</item>
 	<item>
@@ -1205,7 +1205,7 @@
 		<ingredient count="1" id="12260" />
 		<!-- Adena -->
 		<ingredient count="5509" id="57" />
-		<!-- Common Item - Majestic Boots - Heavy Armor Use -->
+		<!-- Common Item - Majestic Boots - Heavy Armor -->
 		<production count="1" id="12252" />
 	</item>
 	<item>
@@ -1221,7 +1221,7 @@
 		<ingredient count="1" id="12260" />
 		<!-- Adena -->
 		<ingredient count="5509" id="57" />
-		<!-- Common Item - Majestic Boots - Robe Use -->
+		<!-- Common Item - Majestic Boots - Robe -->
 		<production count="1" id="12254" />
 	</item>
 </list>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/311262507.xml b/L2J_DataPack_BETA/dist/game/data/multisell/311262507.xml
index 5986cb9a33ad3840ecec0727a83a536be67437c2..7b53b9cae46e07b47a2335bb30de890271a498a3 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/311262507.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/311262507.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Sealed Phoenix Necklace -->
 		<ingredient count="1" id="6323" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/311262508.xml b/L2J_DataPack_BETA/dist/game/data/multisell/311262508.xml
index 6897ca9fe71be5d0816d5328b3a5b5d24e39d786..25226c5843c0061e0879b9d74c4aebf5e6595044 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/311262508.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/311262508.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Dark Crystal Gloves - Heavy Armor -->
 		<ingredient count="1" id="5765" />
@@ -193,7 +193,7 @@
 		<production count="1" id="5319" />
 	</item>
 	<item>
-		<!-- Dark Crystal Gloves - Heavy Armor Use -->
+		<!-- Dark Crystal Gloves - Heavy Armor -->
 		<ingredient count="1" id="11408" />
 		<!-- Adena -->
 		<ingredient count="4350" id="57" />
@@ -209,7 +209,7 @@
 		<production count="1" id="11421" />
 	</item>
 	<item>
-		<!-- Dark Crystal Gloves - Robe Use -->
+		<!-- Dark Crystal Gloves - Robe -->
 		<ingredient count="1" id="11410" />
 		<!-- Adena -->
 		<ingredient count="4350" id="57" />
@@ -217,7 +217,7 @@
 		<production count="1" id="11421" />
 	</item>
 	<item>
-		<!-- Tallum Gloves - Heavy Armor Use -->
+		<!-- Tallum Gloves - Heavy Armor -->
 		<ingredient count="1" id="11437" />
 		<!-- Adena -->
 		<ingredient count="4350" id="57" />
@@ -233,7 +233,7 @@
 		<production count="1" id="11429" />
 	</item>
 	<item>
-		<!-- Tallum Gloves - Robe Use -->
+		<!-- Tallum Gloves - Robe -->
 		<ingredient count="1" id="11439" />
 		<!-- Adena -->
 		<ingredient count="4350" id="57" />
@@ -241,7 +241,7 @@
 		<production count="1" id="11429" />
 	</item>
 	<item>
-		<!-- Gauntlet of Nightmare - Heavy Armor Use -->
+		<!-- Gauntlet of Nightmare - Heavy Armor -->
 		<ingredient count="1" id="11472" />
 		<!-- Adena -->
 		<ingredient count="6600" id="57" />
@@ -257,7 +257,7 @@
 		<production count="1" id="11465" />
 	</item>
 	<item>
-		<!-- Gauntlet of Nightmare - Robe Use -->
+		<!-- Gauntlet of Nightmare - Robe -->
 		<ingredient count="1" id="11474" />
 		<!-- Adena -->
 		<ingredient count="6600" id="57" />
@@ -265,7 +265,7 @@
 		<production count="1" id="11465" />
 	</item>
 	<item>
-		<!-- Majestic Gauntlet - Heavy Armor Use -->
+		<!-- Majestic Gauntlet - Heavy Armor -->
 		<ingredient count="1" id="11448" />
 		<!-- Adena -->
 		<ingredient count="6600" id="57" />
@@ -281,7 +281,7 @@
 		<production count="1" id="11458" />
 	</item>
 	<item>
-		<!-- Majestic Gauntlet - Robe Use -->
+		<!-- Majestic Gauntlet - Robe -->
 		<ingredient count="1" id="11450" />
 		<!-- Adena -->
 		<ingredient count="6600" id="57" />
@@ -289,7 +289,7 @@
 		<production count="1" id="11458" />
 	</item>
 	<item>
-		<!-- Dark Crystal Boots - Heavy Armor Use -->
+		<!-- Dark Crystal Boots - Heavy Armor -->
 		<ingredient count="1" id="11413" />
 		<!-- Adena -->
 		<ingredient count="4350" id="57" />
@@ -305,7 +305,7 @@
 		<production count="1" id="11424" />
 	</item>
 	<item>
-		<!-- Dark Crystal Boots - Robe Use -->
+		<!-- Dark Crystal Boots - Robe -->
 		<ingredient count="1" id="11415" />
 		<!-- Adena -->
 		<ingredient count="4350" id="57" />
@@ -313,7 +313,7 @@
 		<production count="1" id="11424" />
 	</item>
 	<item>
-		<!-- Tallum Boots - Heavy Armor Use -->
+		<!-- Tallum Boots - Heavy Armor -->
 		<ingredient count="1" id="11441" />
 		<!-- Adena -->
 		<ingredient count="4350" id="57" />
@@ -329,7 +329,7 @@
 		<production count="1" id="11431" />
 	</item>
 	<item>
-		<!-- Tallum Boots - Robe Use -->
+		<!-- Tallum Boots - Robe -->
 		<ingredient count="1" id="11443" />
 		<!-- Adena -->
 		<ingredient count="4350" id="57" />
@@ -337,7 +337,7 @@
 		<production count="1" id="11431" />
 	</item>
 	<item>
-		<!-- Boots of Nightmare - Heavy Armor Use -->
+		<!-- Boots of Nightmare - Heavy Armor -->
 		<ingredient count="1" id="11477" />
 		<!-- Adena -->
 		<ingredient count="6600" id="57" />
@@ -353,7 +353,7 @@
 		<production count="1" id="11468" />
 	</item>
 	<item>
-		<!-- Boots of Nightmare - Robe Use -->
+		<!-- Boots of Nightmare - Robe -->
 		<ingredient count="1" id="11479" />
 		<!-- Adena -->
 		<ingredient count="6600" id="57" />
@@ -361,7 +361,7 @@
 		<production count="1" id="11468" />
 	</item>
 	<item>
-		<!-- Majestic Boots - Heavy Armor Use -->
+		<!-- Majestic Boots - Heavy Armor -->
 		<ingredient count="1" id="11453" />
 		<!-- Adena -->
 		<ingredient count="6600" id="57" />
@@ -377,7 +377,7 @@
 		<production count="1" id="11461" />
 	</item>
 	<item>
-		<!-- Majestic Boots - Robe Use -->
+		<!-- Majestic Boots - Robe -->
 		<ingredient count="1" id="11455" />
 		<!-- Adena -->
 		<ingredient count="6600" id="57" />
@@ -385,7 +385,7 @@
 		<production count="1" id="11461" />
 	</item>
 	<item>
-		<!-- Common Item - Dark Crystal Gloves - Heavy Armor Use -->
+		<!-- Common Item - Dark Crystal Gloves - Heavy Armor -->
 		<ingredient count="1" id="12207" />
 		<!-- Adena -->
 		<ingredient count="218" id="57" />
@@ -401,7 +401,7 @@
 		<production count="1" id="12221" />
 	</item>
 	<item>
-		<!-- Common Item - Dark Crystal Gloves - Robe Use -->
+		<!-- Common Item - Dark Crystal Gloves - Robe -->
 		<ingredient count="1" id="12209" />
 		<!-- Adena -->
 		<ingredient count="218" id="57" />
@@ -409,7 +409,7 @@
 		<production count="1" id="12221" />
 	</item>
 	<item>
-		<!-- Common Item - Tallum Gloves - Heavy Armor Use -->
+		<!-- Common Item - Tallum Gloves - Heavy Armor -->
 		<ingredient count="1" id="12236" />
 		<!-- Adena -->
 		<ingredient count="218" id="57" />
@@ -425,7 +425,7 @@
 		<production count="1" id="12229" />
 	</item>
 	<item>
-		<!-- Common Item - Tallum Gloves - Robe Use -->
+		<!-- Common Item - Tallum Gloves - Robe -->
 		<ingredient count="1" id="12238" />
 		<!-- Adena -->
 		<ingredient count="218" id="57" />
@@ -433,7 +433,7 @@
 		<production count="1" id="12229" />
 	</item>
 	<item>
-		<!-- Common Item - Gauntlet of Nightmare - Heavy Armor Use -->
+		<!-- Common Item - Gauntlet of Nightmare - Heavy Armor -->
 		<ingredient count="1" id="12271" />
 		<!-- Adena -->
 		<ingredient count="330" id="57" />
@@ -449,7 +449,7 @@
 		<production count="1" id="12264" />
 	</item>
 	<item>
-		<!-- Common Item - Gauntlet of Nightmare - Robe Use -->
+		<!-- Common Item - Gauntlet of Nightmare - Robe -->
 		<ingredient count="1" id="12273" />
 		<!-- Adena -->
 		<ingredient count="330" id="57" />
@@ -457,7 +457,7 @@
 		<production count="1" id="12264" />
 	</item>
 	<item>
-		<!-- Common Item - Majestic Gauntlet - Heavy Armor Use -->
+		<!-- Common Item - Majestic Gauntlet - Heavy Armor -->
 		<ingredient count="1" id="12247" />
 		<!-- Adena -->
 		<ingredient count="330" id="57" />
@@ -473,7 +473,7 @@
 		<production count="1" id="12257" />
 	</item>
 	<item>
-		<!-- Common Item - Majestic Gauntlet - Robe Use -->
+		<!-- Common Item - Majestic Gauntlet - Robe -->
 		<ingredient count="1" id="12249" />
 		<!-- Adena -->
 		<ingredient count="330" id="57" />
@@ -481,7 +481,7 @@
 		<production count="1" id="12257" />
 	</item>
 	<item>
-		<!-- Common Item - Dark Crystal Boots - Heavy Armor Use -->
+		<!-- Common Item - Dark Crystal Boots - Heavy Armor -->
 		<ingredient count="1" id="12212" />
 		<!-- Adena -->
 		<ingredient count="218" id="57" />
@@ -497,7 +497,7 @@
 		<production count="1" id="12224" />
 	</item>
 	<item>
-		<!-- Common Item - Dark Crystal Boots - Robe Use -->
+		<!-- Common Item - Dark Crystal Boots - Robe -->
 		<ingredient count="1" id="12214" />
 		<!-- Adena -->
 		<ingredient count="218" id="57" />
@@ -505,7 +505,7 @@
 		<production count="1" id="12224" />
 	</item>
 	<item>
-		<!-- Common Item - Tallum Boots - Heavy Armor Use -->
+		<!-- Common Item - Tallum Boots - Heavy Armor -->
 		<ingredient count="1" id="12240" />
 		<!-- Adena -->
 		<ingredient count="218" id="57" />
@@ -521,7 +521,7 @@
 		<production count="1" id="12231" />
 	</item>
 	<item>
-		<!-- Common Item - Tallum Boots - Robe Use -->
+		<!-- Common Item - Tallum Boots - Robe -->
 		<ingredient count="1" id="12242" />
 		<!-- Adena -->
 		<ingredient count="218" id="57" />
@@ -529,7 +529,7 @@
 		<production count="1" id="12231" />
 	</item>
 	<item>
-		<!-- Common Item - Boots of Nightmare - Heavy Armor Use -->
+		<!-- Common Item - Boots of Nightmare - Heavy Armor -->
 		<ingredient count="1" id="12276" />
 		<!-- Adena -->
 		<ingredient count="330" id="57" />
@@ -545,7 +545,7 @@
 		<production count="1" id="12267" />
 	</item>
 	<item>
-		<!-- Common Item - Boots of Nightmare - Robe Use -->
+		<!-- Common Item - Boots of Nightmare - Robe -->
 		<ingredient count="1" id="12278" />
 		<!-- Adena -->
 		<ingredient count="330" id="57" />
@@ -553,7 +553,7 @@
 		<production count="1" id="12267" />
 	</item>
 	<item>
-		<!-- Common Item - Majestic Boots - Heavy Armor Use -->
+		<!-- Common Item - Majestic Boots - Heavy Armor -->
 		<ingredient count="1" id="12252" />
 		<!-- Adena -->
 		<ingredient count="330" id="57" />
@@ -569,7 +569,7 @@
 		<production count="1" id="12260" />
 	</item>
 	<item>
-		<!-- Common Item - Majestic Boots - Robe Use -->
+		<!-- Common Item - Majestic Boots - Robe -->
 		<ingredient count="1" id="12254" />
 		<!-- Adena -->
 		<ingredient count="330" id="57" />
@@ -577,9 +577,9 @@
 		<production count="1" id="12260" />
 	</item>
 	<item>
-		<!-- Dark Crystal Helmet - Heavy Armor Use -->
+		<!-- Dark Crystal Helmet - Heavy Armor -->
 		<ingredient count="1" id="11417" />
-		<!-- Sealed Dark Crystal Helmet - Heavy Armor Use -->
+		<!-- Sealed Dark Crystal Helmet - Heavy Armor -->
 		<production count="1" id="11426" />
 	</item>
 	<item>
@@ -589,15 +589,15 @@
 		<production count="1" id="12994" />
 	</item>
 	<item>
-		<!-- Dark Crystal Helmet - Robe Use -->
+		<!-- Dark Crystal Helmet - Robe -->
 		<ingredient count="1" id="12987" />
-		<!-- Sealed Dark Crystal Helmet - Robe Use -->
+		<!-- Sealed Dark Crystal Helmet - Robe -->
 		<production count="1" id="12995" />
 	</item>
 	<item>
-		<!-- Tallum Helmet - Heavy Armor Use -->
+		<!-- Tallum Helmet - Heavy Armor -->
 		<ingredient count="1" id="11446" />
-		<!-- Sealed Tallum Helmet - Heavy Armor Use -->
+		<!-- Sealed Tallum Helmet - Heavy Armor -->
 		<production count="1" id="11434" />
 	</item>
 	<item>
@@ -607,15 +607,15 @@
 		<production count="1" id="12996" />
 	</item>
 	<item>
-		<!-- Tallum Helmet - Robe Use -->
+		<!-- Tallum Helmet - Robe -->
 		<ingredient count="1" id="12989" />
-		<!-- Sealed Tallum Helmet - Robe Use -->
+		<!-- Sealed Tallum Helmet - Robe -->
 		<production count="1" id="12997" />
 	</item>
 	<item>
-		<!-- Majestic Circlet - Heavy Armor Use -->
+		<!-- Majestic Circlet - Heavy Armor -->
 		<ingredient count="1" id="11456" />
-		<!-- Sealed Majestic Circlet - Heavy Armor Use -->
+		<!-- Sealed Majestic Circlet - Heavy Armor -->
 		<production count="1" id="11462" />
 	</item>
 	<item>
@@ -625,15 +625,15 @@
 		<production count="1" id="12998" />
 	</item>
 	<item>
-		<!-- Majestic Circlet - Robe Use -->
+		<!-- Majestic Circlet - Robe -->
 		<ingredient count="1" id="12991" />
-		<!-- Sealed Majestic Circlet - Robe Use -->
+		<!-- Sealed Majestic Circlet - Robe -->
 		<production count="1" id="12999" />
 	</item>
 	<item>
-		<!-- Helm of Nightmare - Heavy Armor Use -->
+		<!-- Helm of Nightmare - Heavy Armor -->
 		<ingredient count="1" id="11481" />
-		<!-- Sealed Helm of Nightmare - Heavy Armor Use -->
+		<!-- Sealed Helm of Nightmare - Heavy Armor -->
 		<production count="1" id="11470" />
 	</item>
 	<item>
@@ -643,9 +643,9 @@
 		<production count="1" id="13000" />
 	</item>
 	<item>
-		<!-- Helm of Nightmare - Robe Use -->
+		<!-- Helm of Nightmare - Robe -->
 		<ingredient count="1" id="12993" />
-		<!-- Sealed Helm of Nightmare - Robe Use -->
+		<!-- Sealed Helm of Nightmare - Robe -->
 		<production count="1" id="13001" />
 	</item>
 </list>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/311262509.xml b/L2J_DataPack_BETA/dist/game/data/multisell/311262509.xml
index 2eca6c0c40ae2a7fbcef064aed5d7d804a1201c2..d6cf9b959d52de2d485661a3c7295bb53d6c9f8c 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/311262509.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/311262509.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Stormbringer - Critical Anger -->
 		<ingredient count="1" id="4681" />
@@ -43,7 +43,7 @@
 		<production count="1" id="7887" />
 	</item>
 	<item>
-		<!-- Mysterious Sword - Magic Power -->
+		<!-- Mysterious Sword - M. Atk. -->
 		<ingredient count="1" id="8112" />
 		<!-- Mysterious Sword -->
 		<production count="1" id="7887" />
@@ -61,7 +61,7 @@
 		<production count="1" id="89" />
 	</item>
 	<item>
-		<!-- Big Hammer - Rsk.Focus -->
+		<!-- Big Hammer - Rsk. Focus -->
 		<ingredient count="1" id="4727" />
 		<!-- Big Hammer -->
 		<production count="1" id="89" />
@@ -79,7 +79,7 @@
 		<production count="1" id="160" />
 	</item>
 	<item>
-		<!-- Battle Axe - Rsk.Focus -->
+		<!-- Battle Axe - Rsk. Focus -->
 		<ingredient count="1" id="4730" />
 		<!-- Battle Axe -->
 		<production count="1" id="160" />
@@ -97,7 +97,7 @@
 		<production count="1" id="161" />
 	</item>
 	<item>
-		<!-- Silver Axe - Rsk.Focus -->
+		<!-- Silver Axe - Rsk. Focus -->
 		<ingredient count="1" id="4733" />
 		<!-- Silver Axe -->
 		<production count="1" id="161" />
@@ -121,7 +121,7 @@
 		<production count="1" id="173" />
 	</item>
 	<item>
-		<!-- Skull Graver - Rsk.Focus -->
+		<!-- Skull Graver - Rsk. Focus -->
 		<ingredient count="1" id="4737" />
 		<!-- Skull Graver -->
 		<production count="1" id="173" />
@@ -499,19 +499,19 @@
 		<production count="1" id="282" />
 	</item>
 	<item>
-		<!-- Elven Bow of Nobility - Evasion -->
+		<!-- Noble Elven Bow - Evasion -->
 		<ingredient count="1" id="4816" />
 		<!-- Noble Elven Bow -->
 		<production count="1" id="285" />
 	</item>
 	<item>
-		<!-- Elven Bow of Nobility - Miser -->
+		<!-- Noble Elven Bow - Miser -->
 		<ingredient count="1" id="4817" />
 		<!-- Noble Elven Bow -->
 		<production count="1" id="285" />
 	</item>
 	<item>
-		<!-- Elven Bow of Nobility - Cheap Shot -->
+		<!-- Noble Elven Bow - Cheap Shot -->
 		<ingredient count="1" id="4818" />
 		<!-- Noble Elven Bow -->
 		<production count="1" id="285" />
@@ -559,7 +559,7 @@
 		<production count="1" id="196" />
 	</item>
 	<item>
-		<!-- Stick of Eternity - Rsk., Evasion -->
+		<!-- Stick of Eternity - Rsk. Evasion -->
 		<ingredient count="1" id="7705" />
 		<!-- Stick of Eternity -->
 		<production count="1" id="196" />
@@ -589,7 +589,7 @@
 		<production count="1" id="7882" />
 	</item>
 	<item>
-		<!-- Nirvana Axe - Magic Power -->
+		<!-- Nirvana Axe - M. Atk. -->
 		<ingredient count="1" id="7707" />
 		<!-- Nirvana Axe -->
 		<production count="1" id="174" />
@@ -613,7 +613,7 @@
 		<production count="1" id="201" />
 	</item>
 	<item>
-		<!-- Club of Nature - Magic Mental Shield -->
+		<!-- Club of Nature - Mental Shield -->
 		<ingredient count="1" id="7711" />
 		<!-- Club of Nature -->
 		<production count="1" id="201" />
@@ -625,21 +625,21 @@
 		<production count="1" id="201" />
 	</item>
 	<item>
-		<!-- Mace of the Underworld - Mana Up -->
+		<!-- Mace of Underworld - Mana Up -->
 		<ingredient count="1" id="7713" />
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<production count="1" id="202" />
 	</item>
 	<item>
-		<!-- Mace of the Underworld - Magic Silence -->
+		<!-- Mace of Underworld - Magic Silence -->
 		<ingredient count="1" id="7714" />
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<production count="1" id="202" />
 	</item>
 	<item>
-		<!-- Mace of the Underworld - Conversion -->
+		<!-- Mace of Underworld - Conversion -->
 		<ingredient count="1" id="7715" />
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<production count="1" id="202" />
 	</item>
 	<item>
@@ -991,7 +991,7 @@
 		<production count="1" id="7888" />
 	</item>
 	<item>
-		<!-- Ecliptic Sword - Magic Power -->
+		<!-- Ecliptic Sword - M. Atk. -->
 		<ingredient count="1" id="8115" />
 		<!-- Ecliptic Sword -->
 		<production count="1" id="7888" />
@@ -1069,7 +1069,7 @@
 		<production count="1" id="7891" />
 	</item>
 	<item>
-		<!-- Ecliptic Axe - Magic Power -->
+		<!-- Ecliptic Axe - M. Atk. -->
 		<ingredient count="1" id="8139" />
 		<!-- Ecliptic Axe -->
 		<production count="1" id="7891" />
@@ -1285,7 +1285,7 @@
 		<production count="1" id="7892" />
 	</item>
 	<item>
-		<!-- Spell Breaker - Magic Mental Shield -->
+		<!-- Spell Breaker - Mental Shield -->
 		<ingredient count="1" id="8142" />
 		<!-- Spell Breaker -->
 		<production count="1" id="7892" />
@@ -1483,7 +1483,7 @@
 		<production count="1" id="7889" />
 	</item>
 	<item>
-		<!-- Wizard's Tear - Magic Power -->
+		<!-- Wizard's Tear - M. Atk. -->
 		<ingredient count="1" id="8118" />
 		<!-- Wizard's Tear -->
 		<production count="1" id="7889" />
@@ -1495,21 +1495,21 @@
 		<production count="1" id="7889" />
 	</item>
 	<item>
-		<!-- Demon Dagger - Critical Bleed -->
+		<!-- Demon's Dagger - Critical Bleed -->
 		<ingredient count="1" id="4780" />
-		<!-- Demon Dagger -->
+		<!-- Demon's Dagger -->
 		<production count="1" id="234" />
 	</item>
 	<item>
-		<!-- Demon Dagger - Critical Poison -->
+		<!-- Demon's Dagger - Critical Poison -->
 		<ingredient count="1" id="4781" />
-		<!-- Demon Dagger -->
+		<!-- Demon's Dagger -->
 		<production count="1" id="234" />
 	</item>
 	<item>
-		<!-- Demon Dagger - Critical Damage -->
+		<!-- Demon's Dagger - Critical Damage -->
 		<ingredient count="1" id="6359" />
-		<!-- Demon Dagger -->
+		<!-- Demon's Dagger -->
 		<production count="1" id="234" />
 	</item>
 	<item>
@@ -1645,7 +1645,7 @@
 		<production count="1" id="145" />
 	</item>
 	<item>
-		<!-- Sword of Whispering Death - Magic Power -->
+		<!-- Sword of Whispering Death - M. Atk. -->
 		<ingredient count="1" id="6311" />
 		<!-- Sword of Whispering Death -->
 		<production count="1" id="145" />
@@ -1981,7 +1981,7 @@
 		<production count="1" id="80" />
 	</item>
 	<item>
-		<!-- Elemental Sword - Magic Power -->
+		<!-- Elemental Sword - M. Atk. -->
 		<ingredient count="1" id="5638" />
 		<!-- Elemental Sword -->
 		<production count="1" id="150" />
@@ -1999,7 +1999,7 @@
 		<production count="1" id="150" />
 	</item>
 	<item>
-		<!-- Sword of Miracles - Magic Power -->
+		<!-- Sword of Miracles - M. Atk. -->
 		<ingredient count="1" id="5641" />
 		<!-- Sword of Miracles -->
 		<production count="1" id="151" />
@@ -2077,7 +2077,7 @@
 		<production count="1" id="7895" />
 	</item>
 	<item>
-		<!-- Flaming Dragon Skull - Magic Power -->
+		<!-- Flaming Dragon Skull - M. Atk. -->
 		<ingredient count="1" id="8151" />
 		<!-- Flaming Dragon Skull -->
 		<production count="1" id="7895" />
@@ -2419,7 +2419,7 @@
 		<production count="1" id="8686" />
 	</item>
 	<item>
-		<!-- Themis' Tongue - Magic Mental Shield -->
+		<!-- Themis' Tongue - Mental Shield -->
 		<ingredient count="1" id="8813" />
 		<!-- Themis' Tongue -->
 		<production count="1" id="8686" />
@@ -2461,7 +2461,7 @@
 		<production count="1" id="8688" />
 	</item>
 	<item>
-		<!-- Daimon Crystal - Magic Mental Shield -->
+		<!-- Daimon Crystal - Mental Shield -->
 		<ingredient count="1" id="8820" />
 		<!-- Daimon Crystal -->
 		<production count="1" id="8688" />
@@ -3115,21 +3115,21 @@
 		<production count="1" id="9368" />
 	</item>
 	<item>
-		<!-- Sarnga - Cheap Shot -->
+		<!-- Sarunga - Cheap Shot -->
 		<ingredient count="1" id="9373" />
-		<!-- Sarnga -->
+		<!-- Sarunga -->
 		<production count="1" id="9372" />
 	</item>
 	<item>
-		<!-- Sarnga - Focus -->
+		<!-- Sarunga - Focus -->
 		<ingredient count="1" id="9374" />
-		<!-- Sarnga -->
+		<!-- Sarunga -->
 		<production count="1" id="9372" />
 	</item>
 	<item>
-		<!-- Sarnga - Critical Slow -->
+		<!-- Sarunga - Critical Slow -->
 		<ingredient count="1" id="9375" />
-		<!-- Sarnga -->
+		<!-- Sarunga -->
 		<production count="1" id="9372" />
 	</item>
 	<item>
@@ -3799,21 +3799,21 @@
 		<production count="1" id="13468" />
 	</item>
 	<item>
-		<!-- Vesper Sheutjeh - Focus -->
+		<!-- Vesper Shooter - Focus -->
 		<ingredient count="1" id="14155" />
-		<!-- Vesper Sheutjeh -->
+		<!-- Vesper Shooter -->
 		<production count="1" id="13469" />
 	</item>
 	<item>
-		<!-- Vesper Sheutjeh - Critical Slow -->
+		<!-- Vesper Shooter - Critical Slow -->
 		<ingredient count="1" id="14156" />
-		<!-- Vesper Sheutjeh -->
+		<!-- Vesper Shooter -->
 		<production count="1" id="13469" />
 	</item>
 	<item>
-		<!-- Vesper Sheutjeh - Cheap Shot -->
+		<!-- Vesper Shooter - Cheap Shot -->
 		<ingredient count="1" id="14154" />
-		<!-- Vesper Sheutjeh -->
+		<!-- Vesper Shooter -->
 		<production count="1" id="13469" />
 	</item>
 	<item>
@@ -3895,7 +3895,7 @@
 		<production count="1" id="16046" />
 	</item>
 	<item>
-		<!-- Vesper Fighter - Gale - Crt. Stun -->
+		<!-- Vesper Fighter - Gale - Critical Stun -->
 		<ingredient count="1" id="16070" />
 		<!-- Vesper Fighter - Gale -->
 		<production count="1" id="16046" />
@@ -3937,7 +3937,7 @@
 		<production count="1" id="16045" />
 	</item>
 	<item>
-		<!-- Vesper Shaper - Gale - Crt. Damage -->
+		<!-- Vesper Shaper - Gale - Critical Damage -->
 		<ingredient count="1" id="16065" />
 		<!-- Vesper Shaper - Gale -->
 		<production count="1" id="16045" />
@@ -3997,21 +3997,21 @@
 		<production count="1" id="16049" />
 	</item>
 	<item>
-		<!-- Vesper Singer - Tidal Wave - Empower -->
+		<!-- Vesper Singer - Hail - Empower -->
 		<ingredient count="1" id="16083" />
-		<!-- Vesper Singer - Tidal Wave -->
+		<!-- Vesper Singer - Hail -->
 		<production count="1" id="16051" />
 	</item>
 	<item>
-		<!-- Vesper Singer - Tidal Wave - MP Regeneration -->
+		<!-- Vesper Singer - Hail - MP Regeneration -->
 		<ingredient count="1" id="16084" />
-		<!-- Vesper Singer - Tidal Wave -->
+		<!-- Vesper Singer - Hail -->
 		<production count="1" id="16051" />
 	</item>
 	<item>
-		<!-- Vesper Singer - Tidal Wave - Magic Hold -->
+		<!-- Vesper Singer - Hail - Magic Hold -->
 		<ingredient count="1" id="16085" />
-		<!-- Vesper Singer - Tidal Wave -->
+		<!-- Vesper Singer - Hail -->
 		<production count="1" id="16051" />
 	</item>
 	<item>
@@ -4027,7 +4027,7 @@
 		<production count="1" id="16052" />
 	</item>
 	<item>
-		<!-- Vesper Thrower - Clairvoyance - Crt. Slow -->
+		<!-- Vesper Thrower - Clairvoyance - Critical Slow -->
 		<ingredient count="1" id="16088" />
 		<!-- Vesper Thrower - Clairvoyance -->
 		<production count="1" id="16052" />
@@ -4051,21 +4051,21 @@
 		<production count="1" id="16053" />
 	</item>
 	<item>
-		<!-- Vesper Schutze - Clairvoyance - Focus -->
+		<!-- Vesper Shooter - Clairvoyance - Focus -->
 		<ingredient count="1" id="16093" />
-		<!-- Vesper Schutze - Clairvoyance -->
+		<!-- Vesper Shooter - Clairvoyance -->
 		<production count="1" id="16054" />
 	</item>
 	<item>
-		<!-- Vesper Schutze - Clairvoyance - Crt. Slow -->
+		<!-- Vesper Shooter - Clairvoyance - Critical Slow -->
 		<ingredient count="1" id="16094" />
-		<!-- Vesper Schutze - Clairvoyance -->
+		<!-- Vesper Shooter - Clairvoyance -->
 		<production count="1" id="16054" />
 	</item>
 	<item>
-		<!-- Vesper Schutze - Clairvoyance - Cheap Shot -->
+		<!-- Vesper Shooter - Clairvoyance - Cheap Shot -->
 		<ingredient count="1" id="16092" />
-		<!-- Vesper Schutze - Clairvoyance -->
+		<!-- Vesper Shooter - Clairvoyance -->
 		<production count="1" id="16054" />
 	</item>
 	<item>
@@ -4129,7 +4129,7 @@
 		<production count="1" id="15559" />
 	</item>
 	<item>
-		<!-- Skull Edge - Crt. Damage -->
+		<!-- Skull Edge - Critical Damage -->
 		<ingredient count="1" id="15834" />
 		<!-- Skull Edge -->
 		<production count="1" id="15559" />
@@ -4195,7 +4195,7 @@
 		<production count="1" id="15562" />
 	</item>
 	<item>
-		<!-- Octo Claw - Crt. Stun -->
+		<!-- Octo Claw - Critical Stun -->
 		<ingredient count="1" id="15845" />
 		<!-- Octo Claw -->
 		<production count="1" id="15563" />
@@ -4285,7 +4285,7 @@
 		<production count="1" id="15567" />
 	</item>
 	<item>
-		<!-- Skull Carnium Bow - Crt. Slow -->
+		<!-- Skull Carnium Bow - Critical Slow -->
 		<ingredient count="1" id="15860" />
 		<!-- Skull Carnium Bow -->
 		<production count="1" id="15568" />
@@ -4339,7 +4339,7 @@
 		<production count="1" id="15570" />
 	</item>
 	<item>
-		<!-- Dominion Crossbow - Crt. Slow -->
+		<!-- Dominion Crossbow - Critical Slow -->
 		<ingredient count="1" id="15869" />
 		<!-- Dominion Crossbow -->
 		<production count="1" id="15571" />
@@ -4387,7 +4387,7 @@
 		<production count="1" id="15545" />
 	</item>
 	<item>
-		<!-- Mamba Edge - Crt. Damage -->
+		<!-- Mamba Edge - Critical Damage -->
 		<ingredient count="1" id="15875" />
 		<!-- Mamba Edge -->
 		<production count="1" id="15545" />
@@ -4453,7 +4453,7 @@
 		<production count="1" id="15549" />
 	</item>
 	<item>
-		<!-- Jade Claw - Crt. Stun -->
+		<!-- Jade Claw - Critical Stun -->
 		<ingredient count="1" id="15886" />
 		<!-- Jade Claw -->
 		<production count="1" id="15549" />
@@ -4543,7 +4543,7 @@
 		<production count="1" id="15554" />
 	</item>
 	<item>
-		<!-- Recurve Thorne Bow - Crt. Slow -->
+		<!-- Recurve Thorne Bow - Critical Slow -->
 		<ingredient count="1" id="15901" />
 		<!-- Recurve Thorne Bow -->
 		<production count="1" id="15554" />
@@ -4597,7 +4597,7 @@
 		<production count="1" id="15557" />
 	</item>
 	<item>
-		<!-- Thorne Crossbow - Crt. Slow -->
+		<!-- Thorne Crossbow - Critical Slow -->
 		<ingredient count="1" id="15910" />
 		<!-- Thorne Crossbow -->
 		<production count="1" id="15557" />
@@ -4687,7 +4687,7 @@
 		<production count="1" id="10942" />
 	</item>
 	<item>
-		<!-- Hell Knife - Confusion - Magic Mental Shield -->
+		<!-- Hell Knife - Confusion - Mental Shield -->
 		<ingredient count="1" id="10944" />
 		<!-- Hell Knife - Confusion -->
 		<production count="1" id="10942" />
@@ -4705,7 +4705,7 @@
 		<production count="1" id="10898" />
 	</item>
 	<item>
-		<!-- Spell Breaker - Hail - Magic Mental Shield -->
+		<!-- Spell Breaker - Hail - Mental Shield -->
 		<ingredient count="1" id="10900" />
 		<!-- Spell Breaker - Hail -->
 		<production count="1" id="10898" />
@@ -4795,7 +4795,7 @@
 		<production count="1" id="10916" />
 	</item>
 	<item>
-		<!-- Sprite's Staff - Hail - Magic Mental Shield -->
+		<!-- Sprite's Staff - Hail - Mental Shield -->
 		<ingredient count="1" id="10918" />
 		<!-- Sprite's Staff - Hail -->
 		<production count="1" id="10916" />
@@ -4903,7 +4903,7 @@
 		<production count="1" id="11005" />
 	</item>
 	<item>
-		<!-- Wizard's Tear - Cleverness - Magic Power -->
+		<!-- Wizard's Tear - Cleverness - M. Atk. -->
 		<ingredient count="1" id="11007" />
 		<!-- Wizard's Tear - Cleverness -->
 		<production count="1" id="11005" />
@@ -4915,21 +4915,21 @@
 		<production count="1" id="11005" />
 	</item>
 	<item>
-		<!-- Demon Dagger - Great Gale - Critical Bleed -->
+		<!-- Demon's Dagger - Great Gale - Critical Bleed -->
 		<ingredient count="1" id="10993" />
-		<!-- Demon Dagger - Great Gale -->
+		<!-- Demon's Dagger - Great Gale -->
 		<production count="1" id="10992" />
 	</item>
 	<item>
-		<!-- Demon Dagger - Great Gale - Critical Poison -->
+		<!-- Demon's Dagger - Great Gale - Critical Poison -->
 		<ingredient count="1" id="10994" />
-		<!-- Demon Dagger - Great Gale -->
+		<!-- Demon's Dagger - Great Gale -->
 		<production count="1" id="10992" />
 	</item>
 	<item>
-		<!-- Demon Dagger - Great Gale - Critical Damage -->
+		<!-- Demon's Dagger - Great Gale - Critical Damage -->
 		<ingredient count="1" id="10996" />
-		<!-- Demon Dagger - Great Gale -->
+		<!-- Demon's Dagger - Great Gale -->
 		<production count="1" id="10992" />
 	</item>
 	<item>
@@ -4981,7 +4981,7 @@
 		<production count="1" id="10967" />
 	</item>
 	<item>
-		<!-- Lance - Earth - Long Blow -->
+		<!-- Lance - Earth - Towering Blow -->
 		<ingredient count="1" id="10970" />
 		<!-- Lance - Earth -->
 		<production count="1" id="10967" />
@@ -5329,7 +5329,7 @@
 		<production count="1" id="11058" />
 	</item>
 	<item>
-		<!-- Elemental Sword - Hail - Magic Power -->
+		<!-- Elemental Sword - Hail - M. Atk. -->
 		<ingredient count="1" id="11042" />
 		<!-- Elemental Sword - Hail -->
 		<production count="1" id="11041" />
@@ -5347,7 +5347,7 @@
 		<production count="1" id="11041" />
 	</item>
 	<item>
-		<!-- Sword of Miracles - Holy Spirit - Magic Power -->
+		<!-- Sword of Miracles - Holy Spirit - M. Atk. -->
 		<ingredient count="1" id="11109" />
 		<!-- Sword of Miracles - Holy Spirit -->
 		<production count="1" id="11108" />
@@ -5383,21 +5383,21 @@
 		<production count="1" id="11096" />
 	</item>
 	<item>
-		<!-- Dark Legion - Thunder - Critical Damage -->
+		<!-- Dark Legion's Edge - Thunder - Critical Damage -->
 		<ingredient count="1" id="11081" />
-		<!-- Dark Legion - Thunder -->
+		<!-- Dark Legion's Edge - Thunder -->
 		<production count="1" id="11080" />
 	</item>
 	<item>
-		<!-- Dark Legion - Thunder - Health -->
+		<!-- Dark Legion's Edge - Thunder - Health -->
 		<ingredient count="1" id="11082" />
-		<!-- Dark Legion - Thunder -->
+		<!-- Dark Legion's Edge - Thunder -->
 		<production count="1" id="11080" />
 	</item>
 	<item>
-		<!-- Dark Legion - Thunder - Rsk. Focus -->
+		<!-- Dark Legion's Edge - Thunder - Rsk. Focus -->
 		<ingredient count="1" id="11083" />
-		<!-- Dark Legion - Thunder -->
+		<!-- Dark Legion's Edge - Thunder -->
 		<production count="1" id="11080" />
 	</item>
 	<item>
@@ -5425,7 +5425,7 @@
 		<production count="1" id="11100" />
 	</item>
 	<item>
-		<!-- Flaming Dragon Skull - Wisdom - Magic Power -->
+		<!-- Flaming Dragon Skull - Wisdom - M. Atk. -->
 		<ingredient count="1" id="11102" />
 		<!-- Flaming Dragon Skull - Wisdom -->
 		<production count="1" id="11100" />
@@ -5713,7 +5713,7 @@
 		<production count="1" id="11177" />
 	</item>
 	<item>
-		<!-- Tiphon's Spear - Landslide - Long Blow -->
+		<!-- Tiphon's Spear - Landslide - Towering Blow -->
 		<ingredient count="1" id="11179" />
 		<!-- Tiphon's Spear - Landslide -->
 		<production count="1" id="11177" />
@@ -5767,7 +5767,7 @@
 		<production count="1" id="11182" />
 	</item>
 	<item>
-		<!-- Themis' Tongue - Cleverness - Magic Mental Shield -->
+		<!-- Themis' Tongue - Cleverness - Mental Shield -->
 		<ingredient count="1" id="11184" />
 		<!-- Themis' Tongue - Cleverness -->
 		<production count="1" id="11182" />
@@ -5809,7 +5809,7 @@
 		<production count="1" id="11137" />
 	</item>
 	<item>
-		<!-- Daimon Crystal - Wisdom - Magic Mental Shield -->
+		<!-- Daimon Crystal - Wisdom - Mental Shield -->
 		<ingredient count="1" id="11140" />
 		<!-- Daimon Crystal - Wisdom -->
 		<production count="1" id="11137" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/311262510.xml b/L2J_DataPack_BETA/dist/game/data/multisell/311262510.xml
index 0a15bb3f31f67f415c3dcd32b3a9c4159e20bfff..2d95f6bd716229ef93f4e602ad10b349c0dd7eaa 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/311262510.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/311262510.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Dasparion's Staff -->
 		<ingredient count="1" id="212" />
@@ -397,7 +397,7 @@
 		<ingredient count="1" id="5577" />
 		<!-- Gemstone A -->
 		<ingredient count="147" id="2133" />
-		<!-- Elemental Sword - Magic Power -->
+		<!-- Elemental Sword - M. Atk. -->
 		<production count="1" id="5638" />
 	</item>
 	<item>
@@ -427,7 +427,7 @@
 		<ingredient count="1" id="5580" />
 		<!-- Gemstone A -->
 		<ingredient count="140" id="2133" />
-		<!-- Sword of Miracles - Magic Power -->
+		<!-- Sword of Miracles - M. Atk. -->
 		<production count="1" id="5641" />
 	</item>
 	<item>
@@ -647,7 +647,7 @@
 		<ingredient count="1" id="5581" />
 		<!-- Gemstone A -->
 		<ingredient count="140" id="2133" />
-		<!-- Flaming Dragon Skull - Magic Power -->
+		<!-- Flaming Dragon Skull - M. Atk. -->
 		<production count="1" id="8151" />
 	</item>
 	<item>
@@ -917,7 +917,7 @@
 		<ingredient count="1" id="5581" />
 		<!-- Gemstone A -->
 		<ingredient count="157" id="2133" />
-		<!-- Themis' Tongue - Magic Mental Shield -->
+		<!-- Themis' Tongue - Mental Shield -->
 		<production count="1" id="8813" />
 	</item>
 	<item>
@@ -987,7 +987,7 @@
 		<ingredient count="1" id="5582" />
 		<!-- Gemstone A -->
 		<ingredient count="157" id="2133" />
-		<!-- Daimon Crystal - Magic Mental Shield -->
+		<!-- Daimon Crystal - Mental Shield -->
 		<production count="1" id="8820" />
 	</item>
 	<item>
@@ -1387,7 +1387,7 @@
 		<ingredient count="1" id="5577" />
 		<!-- Gemstone A -->
 		<ingredient count="147" id="2133" />
-		<!-- Elemental Sword - Hail - Magic Power -->
+		<!-- Elemental Sword - Hail - M. Atk. -->
 		<production count="1" id="11042" />
 	</item>
 	<item>
@@ -1417,7 +1417,7 @@
 		<ingredient count="1" id="5580" />
 		<!-- Gemstone A -->
 		<ingredient count="140" id="2133" />
-		<!-- Sword of Miracles - Holy Spirit - Magic Power -->
+		<!-- Sword of Miracles - Holy Spirit - M. Atk. -->
 		<production count="1" id="11109" />
 	</item>
 	<item>
@@ -1471,33 +1471,33 @@
 		<production count="1" id="11099" />
 	</item>
 	<item>
-		<!-- Dark Legion - Thunder -->
+		<!-- Dark Legion's Edge - Thunder -->
 		<ingredient count="1" id="11080" />
 		<!-- Red Soul Crystal - Stage 12 -->
 		<ingredient count="1" id="5580" />
 		<!-- Gemstone A -->
 		<ingredient count="157" id="2133" />
-		<!-- Dark Legion - Thunder - Critical Damage -->
+		<!-- Dark Legion's Edge - Thunder - Critical Damage -->
 		<production count="1" id="11081" />
 	</item>
 	<item>
-		<!-- Dark Legion - Thunder -->
+		<!-- Dark Legion's Edge - Thunder -->
 		<ingredient count="1" id="11080" />
 		<!-- Green Soul Crystal - Stage 12 -->
 		<ingredient count="1" id="5581" />
 		<!-- Gemstone A -->
 		<ingredient count="140" id="2133" />
-		<!-- Dark Legion - Thunder - Health -->
+		<!-- Dark Legion's Edge - Thunder - Health -->
 		<production count="1" id="11082" />
 	</item>
 	<item>
-		<!-- Dark Legion - Thunder -->
+		<!-- Dark Legion's Edge - Thunder -->
 		<ingredient count="1" id="11080" />
 		<!-- Blue Soul Crystal - Stage 12 -->
 		<ingredient count="1" id="5582" />
 		<!-- Gemstone A -->
 		<ingredient count="157" id="2133" />
-		<!-- Dark Legion - Thunder - Rsk. Focus -->
+		<!-- Dark Legion's Edge - Thunder - Rsk. Focus -->
 		<production count="1" id="11083" />
 	</item>
 	<item>
@@ -1637,7 +1637,7 @@
 		<ingredient count="1" id="5581" />
 		<!-- Gemstone A -->
 		<ingredient count="140" id="2133" />
-		<!-- Flaming Dragon Skull - Wisdom - Magic Power -->
+		<!-- Flaming Dragon Skull - Wisdom - M. Atk. -->
 		<production count="1" id="11102" />
 	</item>
 	<item>
@@ -1817,7 +1817,7 @@
 		<ingredient count="1" id="5581" />
 		<!-- Gemstone A -->
 		<ingredient count="157" id="2133" />
-		<!-- Tiphon's Spear - Landslide - Long Blow -->
+		<!-- Tiphon's Spear - Landslide - Towering Blow -->
 		<production count="1" id="11179" />
 	</item>
 	<item>
@@ -1907,7 +1907,7 @@
 		<ingredient count="1" id="5581" />
 		<!-- Gemstone A -->
 		<ingredient count="157" id="2133" />
-		<!-- Themis' Tongue - Cleverness - Magic Mental Shield -->
+		<!-- Themis' Tongue - Cleverness - Mental Shield -->
 		<production count="1" id="11184" />
 	</item>
 	<item>
@@ -1977,7 +1977,7 @@
 		<ingredient count="1" id="5582" />
 		<!-- Gemstone A -->
 		<ingredient count="157" id="2133" />
-		<!-- Daimon Crystal - Wisdom - Magic Mental Shield -->
+		<!-- Daimon Crystal - Wisdom - Mental Shield -->
 		<production count="1" id="11140" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/311262511.xml b/L2J_DataPack_BETA/dist/game/data/multisell/311262511.xml
index a7be7831d03214a2d4d96dfffbb465dfb1250099..858d94ed4b97727fc7f725b0e66f46ca63875bae 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/311262511.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/311262511.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Hand Axe -->
 		<ingredient count="1" id="156" />
@@ -661,7 +661,7 @@
 		<ingredient count="1" id="2502" />
 		<!-- Ancient Adena -->
 		<ingredient count="1716000" id="5575" />
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<production count="1" id="202" />
 	</item>
 	<item>
@@ -793,7 +793,7 @@
 		<production count="1" id="2503" />
 	</item>
 	<item>
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<ingredient count="1" id="202" />
 		<!-- Ancient Adena -->
 		<ingredient count="2196000" id="5575" />
@@ -825,7 +825,7 @@
 		<production count="1" id="206" />
 	</item>
 	<item>
-		<!-- Strengthened Bow -->
+		<!-- Reinforced Bow -->
 		<ingredient count="1" id="274" />
 		<!-- Ancient Adena -->
 		<ingredient count="282000" id="5575" />
@@ -833,7 +833,7 @@
 		<production count="1" id="275" />
 	</item>
 	<item>
-		<!-- Strengthened Bow -->
+		<!-- Reinforced Bow -->
 		<ingredient count="1" id="274" />
 		<!-- Ancient Adena -->
 		<ingredient count="282000" id="5575" />
@@ -841,7 +841,7 @@
 		<production count="1" id="276" />
 	</item>
 	<item>
-		<!-- Strengthened Bow -->
+		<!-- Reinforced Bow -->
 		<ingredient count="1" id="274" />
 		<!-- Ancient Adena -->
 		<ingredient count="282000" id="5575" />
@@ -877,11 +877,11 @@
 		<ingredient count="1" id="278" />
 		<!-- Ancient Adena -->
 		<ingredient count="519600" id="5575" />
-		<!-- Strengthened Long Bow -->
+		<!-- Reinforced Long Bow -->
 		<production count="1" id="279" />
 	</item>
 	<item>
-		<!-- Strengthened Long Bow -->
+		<!-- Reinforced Long Bow -->
 		<ingredient count="1" id="279" />
 		<!-- Ancient Adena -->
 		<ingredient count="480000" id="5575" />
@@ -1301,7 +1301,7 @@
 		<ingredient count="1" id="315" />
 		<!-- Ancient Adena -->
 		<ingredient count="387600" id="5575" />
-		<!-- Blood of Saints -->
+		<!-- Sage's Blood -->
 		<production count="1" id="316" />
 	</item>
 	<item>
@@ -1313,7 +1313,7 @@
 		<production count="1" id="317" />
 	</item>
 	<item>
-		<!-- Blood of Saints -->
+		<!-- Sage's Blood -->
 		<ingredient count="1" id="316" />
 		<!-- Ancient Adena -->
 		<ingredient count="519600" id="5575" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/311262512.xml b/L2J_DataPack_BETA/dist/game/data/multisell/311262512.xml
index b3c1fdaebd8dbf5b1e096589c1d3f9da70b1b278..26d56ffddd01447ba70f3842ea9b1d5aeade9682 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/311262512.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/311262512.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Hand Axe -->
 		<ingredient count="1" id="156" />
@@ -27,7 +27,7 @@
 	<item>
 		<!-- Hand Axe -->
 		<ingredient count="1" id="156" />
-		<!-- Strengthened Bow -->
+		<!-- Reinforced Bow -->
 		<production count="1" id="274" />
 	</item>
 	<item>
@@ -129,7 +129,7 @@
 	<item>
 		<!-- Heavy Mace -->
 		<ingredient count="1" id="166" />
-		<!-- Strengthened Bow -->
+		<!-- Reinforced Bow -->
 		<production count="1" id="274" />
 	</item>
 	<item>
@@ -231,7 +231,7 @@
 	<item>
 		<!-- Scalpel -->
 		<ingredient count="1" id="167" />
-		<!-- Strengthened Bow -->
+		<!-- Reinforced Bow -->
 		<production count="1" id="274" />
 	</item>
 	<item>
@@ -333,7 +333,7 @@
 	<item>
 		<!-- Work Hammer -->
 		<ingredient count="1" id="168" />
-		<!-- Strengthened Bow -->
+		<!-- Reinforced Bow -->
 		<production count="1" id="274" />
 	</item>
 	<item>
@@ -435,7 +435,7 @@
 	<item>
 		<!-- Bone Staff -->
 		<ingredient count="1" id="178" />
-		<!-- Strengthened Bow -->
+		<!-- Reinforced Bow -->
 		<production count="1" id="274" />
 	</item>
 	<item>
@@ -537,7 +537,7 @@
 	<item>
 		<!-- Steel Sword -->
 		<ingredient count="1" id="7880" />
-		<!-- Strengthened Bow -->
+		<!-- Reinforced Bow -->
 		<production count="1" id="274" />
 	</item>
 	<item>
@@ -639,7 +639,7 @@
 	<item>
 		<!-- Priest Sword -->
 		<ingredient count="1" id="7885" />
-		<!-- Strengthened Bow -->
+		<!-- Reinforced Bow -->
 		<production count="1" id="274" />
 	</item>
 	<item>
@@ -1677,7 +1677,7 @@
 	<item>
 		<!-- Spiked Club -->
 		<ingredient count="1" id="157" />
-		<!-- Blood of Saints -->
+		<!-- Sage's Blood -->
 		<production count="1" id="316" />
 	</item>
 	<item>
@@ -1767,7 +1767,7 @@
 	<item>
 		<!-- Staff of Magic -->
 		<ingredient count="1" id="186" />
-		<!-- Blood of Saints -->
+		<!-- Sage's Blood -->
 		<production count="1" id="316" />
 	</item>
 	<item>
@@ -1833,7 +1833,7 @@
 	<item>
 		<!-- Morning Star -->
 		<ingredient count="1" id="88" />
-		<!-- Strengthened Long Bow -->
+		<!-- Reinforced Long Bow -->
 		<production count="1" id="279" />
 	</item>
 	<item>
@@ -1929,7 +1929,7 @@
 	<item>
 		<!-- Goat Head Staff -->
 		<ingredient count="1" id="90" />
-		<!-- Strengthened Long Bow -->
+		<!-- Reinforced Long Bow -->
 		<production count="1" id="279" />
 	</item>
 	<item>
@@ -2025,7 +2025,7 @@
 	<item>
 		<!-- Tarbar -->
 		<ingredient count="1" id="158" />
-		<!-- Strengthened Long Bow -->
+		<!-- Reinforced Long Bow -->
 		<production count="1" id="279" />
 	</item>
 	<item>
@@ -2121,7 +2121,7 @@
 	<item>
 		<!-- Skull Breaker -->
 		<ingredient count="1" id="169" />
-		<!-- Strengthened Long Bow -->
+		<!-- Reinforced Long Bow -->
 		<production count="1" id="279" />
 	</item>
 	<item>
@@ -2217,7 +2217,7 @@
 	<item>
 		<!-- Heavy Bone Club -->
 		<ingredient count="1" id="172" />
-		<!-- Strengthened Long Bow -->
+		<!-- Reinforced Long Bow -->
 		<production count="1" id="279" />
 	</item>
 	<item>
@@ -2313,7 +2313,7 @@
 	<item>
 		<!-- Titan Sword -->
 		<ingredient count="1" id="7881" />
-		<!-- Strengthened Long Bow -->
+		<!-- Reinforced Long Bow -->
 		<production count="1" id="279" />
 	</item>
 	<item>
@@ -2409,7 +2409,7 @@
 	<item>
 		<!-- Sword of Magic Fog -->
 		<ingredient count="1" id="7886" />
-		<!-- Strengthened Long Bow -->
+		<!-- Reinforced Long Bow -->
 		<production count="1" id="279" />
 	</item>
 	<item>
@@ -2505,7 +2505,7 @@
 	<item>
 		<!-- Priest Mace -->
 		<ingredient count="1" id="7890" />
-		<!-- Strengthened Long Bow -->
+		<!-- Reinforced Long Bow -->
 		<production count="1" id="279" />
 	</item>
 	<item>
@@ -2601,7 +2601,7 @@
 	<item>
 		<!-- Titan Hammer -->
 		<ingredient count="1" id="7896" />
-		<!-- Strengthened Long Bow -->
+		<!-- Reinforced Long Bow -->
 		<production count="1" id="279" />
 	</item>
 	<item>
@@ -4077,7 +4077,7 @@
 	<item>
 		<!-- War Axe -->
 		<ingredient count="1" id="162" />
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<production count="1" id="202" />
 	</item>
 	<item>
@@ -4215,7 +4215,7 @@
 	<item>
 		<!-- Nirvana Axe -->
 		<ingredient count="1" id="174" />
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<production count="1" id="202" />
 	</item>
 	<item>
@@ -4353,7 +4353,7 @@
 	<item>
 		<!-- Stick of Eternity -->
 		<ingredient count="1" id="196" />
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<production count="1" id="202" />
 	</item>
 	<item>
@@ -4491,7 +4491,7 @@
 	<item>
 		<!-- Paradia Staff -->
 		<ingredient count="1" id="197" />
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<production count="1" id="202" />
 	</item>
 	<item>
@@ -4629,7 +4629,7 @@
 	<item>
 		<!-- Inferno Staff -->
 		<ingredient count="1" id="198" />
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<production count="1" id="202" />
 	</item>
 	<item>
@@ -4767,7 +4767,7 @@
 	<item>
 		<!-- Pa'agrian Hammer -->
 		<ingredient count="1" id="199" />
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<production count="1" id="202" />
 	</item>
 	<item>
@@ -4905,7 +4905,7 @@
 	<item>
 		<!-- Sage's Staff -->
 		<ingredient count="1" id="200" />
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<production count="1" id="202" />
 	</item>
 	<item>
@@ -5043,7 +5043,7 @@
 	<item>
 		<!-- Club of Nature -->
 		<ingredient count="1" id="201" />
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<production count="1" id="202" />
 	</item>
 	<item>
@@ -5137,139 +5137,139 @@
 		<production count="1" id="7898" />
 	</item>
 	<item>
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<ingredient count="1" id="202" />
 		<!-- War Axe -->
 		<production count="1" id="162" />
 	</item>
 	<item>
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<ingredient count="1" id="202" />
 		<!-- Nirvana Axe -->
 		<production count="1" id="174" />
 	</item>
 	<item>
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<ingredient count="1" id="202" />
 		<!-- Stick of Eternity -->
 		<production count="1" id="196" />
 	</item>
 	<item>
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<ingredient count="1" id="202" />
 		<!-- Paradia Staff -->
 		<production count="1" id="197" />
 	</item>
 	<item>
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<ingredient count="1" id="202" />
 		<!-- Inferno Staff -->
 		<production count="1" id="198" />
 	</item>
 	<item>
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<ingredient count="1" id="202" />
 		<!-- Pa'agrian Hammer -->
 		<production count="1" id="199" />
 	</item>
 	<item>
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<ingredient count="1" id="202" />
 		<!-- Sage's Staff -->
 		<production count="1" id="200" />
 	</item>
 	<item>
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<ingredient count="1" id="202" />
 		<!-- Club of Nature -->
 		<production count="1" id="201" />
 	</item>
 	<item>
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<ingredient count="1" id="202" />
 		<!-- Akat Long Bow -->
 		<production count="1" id="283" />
 	</item>
 	<item>
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<ingredient count="1" id="202" />
 		<!-- Grace Dagger -->
 		<production count="1" id="231" />
 	</item>
 	<item>
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<ingredient count="1" id="202" />
 		<!-- Dark Screamer -->
 		<production count="1" id="233" />
 	</item>
 	<item>
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<ingredient count="1" id="202" />
 		<!-- Fisted Blade -->
 		<production count="1" id="265" />
 	</item>
 	<item>
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<ingredient count="1" id="202" />
 		<!-- Heathen's Book -->
 		<production count="1" id="326" />
 	</item>
 	<item>
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<ingredient count="1" id="202" />
 		<!-- Poleaxe -->
 		<production count="1" id="95" />
 	</item>
 	<item>
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<ingredient count="1" id="202" />
 		<!-- Caliburs -->
 		<production count="1" id="75" />
 	</item>
 	<item>
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<ingredient count="1" id="202" />
 		<!-- Sword of Delusion -->
 		<production count="1" id="76" />
 	</item>
 	<item>
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<ingredient count="1" id="202" />
 		<!-- Tsurugi -->
 		<production count="1" id="77" />
 	</item>
 	<item>
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<ingredient count="1" id="202" />
 		<!-- Homunkulus's Sword -->
 		<production count="1" id="84" />
 	</item>
 	<item>
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<ingredient count="1" id="202" />
 		<!-- Sword of Limit -->
 		<production count="1" id="132" />
 	</item>
 	<item>
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<ingredient count="1" id="202" />
 		<!-- Sword of Nightmare -->
 		<production count="1" id="134" />
 	</item>
 	<item>
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<ingredient count="1" id="202" />
 		<!-- Sword of Whispering Death -->
 		<production count="1" id="145" />
 	</item>
 	<item>
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<ingredient count="1" id="202" />
 		<!-- Pa'agrian Sword -->
 		<production count="1" id="7882" />
 	</item>
 	<item>
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<ingredient count="1" id="202" />
 		<!-- Karik Horn -->
 		<production count="1" id="7898" />
@@ -5403,7 +5403,7 @@
 	<item>
 		<!-- Pa'agrian Sword -->
 		<ingredient count="1" id="7882" />
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<production count="1" id="202" />
 	</item>
 	<item>
@@ -5541,7 +5541,7 @@
 	<item>
 		<!-- Karik Horn -->
 		<ingredient count="1" id="7898" />
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<production count="1" id="202" />
 	</item>
 	<item>
@@ -6067,91 +6067,91 @@
 		<production count="1" id="7891" />
 	</item>
 	<item>
-		<!-- Strengthened Bow -->
+		<!-- Reinforced Bow -->
 		<ingredient count="1" id="274" />
 		<!-- Hand Axe -->
 		<production count="1" id="156" />
 	</item>
 	<item>
-		<!-- Strengthened Bow -->
+		<!-- Reinforced Bow -->
 		<ingredient count="1" id="274" />
 		<!-- Heavy Mace -->
 		<production count="1" id="166" />
 	</item>
 	<item>
-		<!-- Strengthened Bow -->
+		<!-- Reinforced Bow -->
 		<ingredient count="1" id="274" />
 		<!-- Scalpel -->
 		<production count="1" id="167" />
 	</item>
 	<item>
-		<!-- Strengthened Bow -->
+		<!-- Reinforced Bow -->
 		<ingredient count="1" id="274" />
 		<!-- Work Hammer -->
 		<production count="1" id="168" />
 	</item>
 	<item>
-		<!-- Strengthened Bow -->
+		<!-- Reinforced Bow -->
 		<ingredient count="1" id="274" />
 		<!-- Bone Staff -->
 		<production count="1" id="178" />
 	</item>
 	<item>
-		<!-- Strengthened Bow -->
+		<!-- Reinforced Bow -->
 		<ingredient count="1" id="274" />
 		<!-- Crafted Dagger -->
 		<production count="1" id="220" />
 	</item>
 	<item>
-		<!-- Strengthened Bow -->
+		<!-- Reinforced Bow -->
 		<ingredient count="1" id="274" />
 		<!-- Assassin Knife -->
 		<production count="1" id="221" />
 	</item>
 	<item>
-		<!-- Strengthened Bow -->
+		<!-- Reinforced Bow -->
 		<ingredient count="1" id="274" />
 		<!-- Bagh-Nakh -->
 		<production count="1" id="258" />
 	</item>
 	<item>
-		<!-- Strengthened Bow -->
+		<!-- Reinforced Bow -->
 		<ingredient count="1" id="274" />
 		<!-- Scroll of Wisdom -->
 		<production count="1" id="101" />
 	</item>
 	<item>
-		<!-- Strengthened Bow -->
+		<!-- Reinforced Bow -->
 		<ingredient count="1" id="274" />
 		<!-- Branch of Life -->
 		<production count="1" id="312" />
 	</item>
 	<item>
-		<!-- Strengthened Bow -->
+		<!-- Reinforced Bow -->
 		<ingredient count="1" id="274" />
 		<!-- Temptation of Abyss -->
 		<production count="1" id="313" />
 	</item>
 	<item>
-		<!-- Strengthened Bow -->
+		<!-- Reinforced Bow -->
 		<ingredient count="1" id="274" />
 		<!-- Proof of Revenge -->
 		<production count="1" id="314" />
 	</item>
 	<item>
-		<!-- Strengthened Bow -->
+		<!-- Reinforced Bow -->
 		<ingredient count="1" id="274" />
 		<!-- Trident -->
 		<production count="1" id="291" />
 	</item>
 	<item>
-		<!-- Strengthened Bow -->
+		<!-- Reinforced Bow -->
 		<ingredient count="1" id="274" />
 		<!-- Saber -->
 		<production count="1" id="123" />
 	</item>
 	<item>
-		<!-- Strengthened Bow -->
+		<!-- Reinforced Bow -->
 		<ingredient count="1" id="274" />
 		<!-- Heavy Sword -->
 		<production count="1" id="5285" />
@@ -6549,7 +6549,7 @@
 	<item>
 		<!-- Gastraphetes -->
 		<ingredient count="1" id="278" />
-		<!-- Blood of Saints -->
+		<!-- Sage's Blood -->
 		<production count="1" id="316" />
 	</item>
 	<item>
@@ -6589,73 +6589,73 @@
 		<production count="1" id="130" />
 	</item>
 	<item>
-		<!-- Strengthened Long Bow -->
+		<!-- Reinforced Long Bow -->
 		<ingredient count="1" id="279" />
 		<!-- Morning Star -->
 		<production count="1" id="88" />
 	</item>
 	<item>
-		<!-- Strengthened Long Bow -->
+		<!-- Reinforced Long Bow -->
 		<ingredient count="1" id="279" />
 		<!-- Goat Head Staff -->
 		<production count="1" id="90" />
 	</item>
 	<item>
-		<!-- Strengthened Long Bow -->
+		<!-- Reinforced Long Bow -->
 		<ingredient count="1" id="279" />
 		<!-- Tarbar -->
 		<production count="1" id="158" />
 	</item>
 	<item>
-		<!-- Strengthened Long Bow -->
+		<!-- Reinforced Long Bow -->
 		<ingredient count="1" id="279" />
 		<!-- Skull Breaker -->
 		<production count="1" id="169" />
 	</item>
 	<item>
-		<!-- Strengthened Long Bow -->
+		<!-- Reinforced Long Bow -->
 		<ingredient count="1" id="279" />
 		<!-- Heavy Bone Club -->
 		<production count="1" id="172" />
 	</item>
 	<item>
-		<!-- Strengthened Long Bow -->
+		<!-- Reinforced Long Bow -->
 		<ingredient count="1" id="279" />
 		<!-- Maingauche -->
 		<production count="1" id="224" />
 	</item>
 	<item>
-		<!-- Strengthened Long Bow -->
+		<!-- Reinforced Long Bow -->
 		<ingredient count="1" id="279" />
 		<!-- Cursed Maingauche -->
 		<production count="1" id="1660" />
 	</item>
 	<item>
-		<!-- Strengthened Long Bow -->
+		<!-- Reinforced Long Bow -->
 		<ingredient count="1" id="279" />
 		<!-- Bich'Hwa -->
 		<production count="1" id="261" />
 	</item>
 	<item>
-		<!-- Strengthened Long Bow -->
+		<!-- Reinforced Long Bow -->
 		<ingredient count="1" id="279" />
 		<!-- Crucifix of Blood -->
 		<production count="1" id="318" />
 	</item>
 	<item>
-		<!-- Strengthened Long Bow -->
+		<!-- Reinforced Long Bow -->
 		<ingredient count="1" id="279" />
 		<!-- Winged Spear -->
 		<production count="1" id="93" />
 	</item>
 	<item>
-		<!-- Strengthened Long Bow -->
+		<!-- Reinforced Long Bow -->
 		<ingredient count="1" id="279" />
 		<!-- War Pick -->
 		<production count="1" id="294" />
 	</item>
 	<item>
-		<!-- Strengthened Long Bow -->
+		<!-- Reinforced Long Bow -->
 		<ingredient count="1" id="279" />
 		<!-- Sword of Revolution -->
 		<production count="1" id="129" />
@@ -7011,7 +7011,7 @@
 	<item>
 		<!-- Akat Long Bow -->
 		<ingredient count="1" id="283" />
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<production count="1" id="202" />
 	</item>
 	<item>
@@ -7173,7 +7173,7 @@
 	<item>
 		<!-- Crafted Dagger -->
 		<ingredient count="1" id="220" />
-		<!-- Strengthened Bow -->
+		<!-- Reinforced Bow -->
 		<production count="1" id="274" />
 	</item>
 	<item>
@@ -7263,7 +7263,7 @@
 	<item>
 		<!-- Assassin Knife -->
 		<ingredient count="1" id="221" />
-		<!-- Strengthened Bow -->
+		<!-- Reinforced Bow -->
 		<production count="1" id="274" />
 	</item>
 	<item>
@@ -7485,7 +7485,7 @@
 	<item>
 		<!-- Kukuri -->
 		<ingredient count="1" id="223" />
-		<!-- Blood of Saints -->
+		<!-- Sage's Blood -->
 		<production count="1" id="316" />
 	</item>
 	<item>
@@ -7575,7 +7575,7 @@
 	<item>
 		<!-- Dagger of Mana -->
 		<ingredient count="1" id="238" />
-		<!-- Blood of Saints -->
+		<!-- Sage's Blood -->
 		<production count="1" id="316" />
 	</item>
 	<item>
@@ -7665,7 +7665,7 @@
 	<item>
 		<!-- Mystic Knife -->
 		<ingredient count="1" id="239" />
-		<!-- Blood of Saints -->
+		<!-- Sage's Blood -->
 		<production count="1" id="316" />
 	</item>
 	<item>
@@ -7755,7 +7755,7 @@
 	<item>
 		<!-- Conjurer's Knife -->
 		<ingredient count="1" id="240" />
-		<!-- Blood of Saints -->
+		<!-- Sage's Blood -->
 		<production count="1" id="316" />
 	</item>
 	<item>
@@ -7845,7 +7845,7 @@
 	<item>
 		<!-- Shilen Knife -->
 		<ingredient count="1" id="241" />
-		<!-- Blood of Saints -->
+		<!-- Sage's Blood -->
 		<production count="1" id="316" />
 	</item>
 	<item>
@@ -7917,7 +7917,7 @@
 	<item>
 		<!-- Maingauche -->
 		<ingredient count="1" id="224" />
-		<!-- Strengthened Long Bow -->
+		<!-- Reinforced Long Bow -->
 		<production count="1" id="279" />
 	</item>
 	<item>
@@ -7989,7 +7989,7 @@
 	<item>
 		<!-- Cursed Maingauche -->
 		<ingredient count="1" id="1660" />
-		<!-- Strengthened Long Bow -->
+		<!-- Reinforced Long Bow -->
 		<production count="1" id="279" />
 	</item>
 	<item>
@@ -8577,7 +8577,7 @@
 	<item>
 		<!-- Grace Dagger -->
 		<ingredient count="1" id="231" />
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<production count="1" id="202" />
 	</item>
 	<item>
@@ -8703,7 +8703,7 @@
 	<item>
 		<!-- Dark Screamer -->
 		<ingredient count="1" id="233" />
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<production count="1" id="202" />
 	</item>
 	<item>
@@ -8865,7 +8865,7 @@
 	<item>
 		<!-- Bagh-Nakh -->
 		<ingredient count="1" id="258" />
-		<!-- Strengthened Bow -->
+		<!-- Reinforced Bow -->
 		<production count="1" id="274" />
 	</item>
 	<item>
@@ -9087,7 +9087,7 @@
 	<item>
 		<!-- Triple-Edged Jamadhr -->
 		<ingredient count="1" id="260" />
-		<!-- Blood of Saints -->
+		<!-- Sage's Blood -->
 		<production count="1" id="316" />
 	</item>
 	<item>
@@ -9159,7 +9159,7 @@
 	<item>
 		<!-- Bich'Hwa -->
 		<ingredient count="1" id="261" />
-		<!-- Strengthened Long Bow -->
+		<!-- Reinforced Long Bow -->
 		<production count="1" id="279" />
 	</item>
 	<item>
@@ -9477,7 +9477,7 @@
 	<item>
 		<!-- Fisted Blade -->
 		<ingredient count="1" id="265" />
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<production count="1" id="202" />
 	</item>
 	<item>
@@ -9639,7 +9639,7 @@
 	<item>
 		<!-- Scroll of Wisdom -->
 		<ingredient count="1" id="101" />
-		<!-- Strengthened Bow -->
+		<!-- Reinforced Bow -->
 		<production count="1" id="274" />
 	</item>
 	<item>
@@ -9729,7 +9729,7 @@
 	<item>
 		<!-- Branch of Life -->
 		<ingredient count="1" id="312" />
-		<!-- Strengthened Bow -->
+		<!-- Reinforced Bow -->
 		<production count="1" id="274" />
 	</item>
 	<item>
@@ -9819,7 +9819,7 @@
 	<item>
 		<!-- Temptation of Abyss -->
 		<ingredient count="1" id="313" />
-		<!-- Strengthened Bow -->
+		<!-- Reinforced Bow -->
 		<production count="1" id="274" />
 	</item>
 	<item>
@@ -9909,7 +9909,7 @@
 	<item>
 		<!-- Proof of Revenge -->
 		<ingredient count="1" id="314" />
-		<!-- Strengthened Bow -->
+		<!-- Reinforced Bow -->
 		<production count="1" id="274" />
 	</item>
 	<item>
@@ -10081,91 +10081,91 @@
 		<production count="1" id="128" />
 	</item>
 	<item>
-		<!-- Blood of Saints -->
+		<!-- Sage's Blood -->
 		<ingredient count="1" id="316" />
 		<!-- Spiked Club -->
 		<production count="1" id="157" />
 	</item>
 	<item>
-		<!-- Blood of Saints -->
+		<!-- Sage's Blood -->
 		<ingredient count="1" id="316" />
 		<!-- Staff of Magic -->
 		<production count="1" id="186" />
 	</item>
 	<item>
-		<!-- Blood of Saints -->
+		<!-- Sage's Blood -->
 		<ingredient count="1" id="316" />
 		<!-- Gastraphetes -->
 		<production count="1" id="278" />
 	</item>
 	<item>
-		<!-- Blood of Saints -->
+		<!-- Sage's Blood -->
 		<ingredient count="1" id="316" />
 		<!-- Kukuri -->
 		<production count="1" id="223" />
 	</item>
 	<item>
-		<!-- Blood of Saints -->
+		<!-- Sage's Blood -->
 		<ingredient count="1" id="316" />
 		<!-- Dagger of Mana -->
 		<production count="1" id="238" />
 	</item>
 	<item>
-		<!-- Blood of Saints -->
+		<!-- Sage's Blood -->
 		<ingredient count="1" id="316" />
 		<!-- Mystic Knife -->
 		<production count="1" id="239" />
 	</item>
 	<item>
-		<!-- Blood of Saints -->
+		<!-- Sage's Blood -->
 		<ingredient count="1" id="316" />
 		<!-- Conjurer's Knife -->
 		<production count="1" id="240" />
 	</item>
 	<item>
-		<!-- Blood of Saints -->
+		<!-- Sage's Blood -->
 		<ingredient count="1" id="316" />
 		<!-- Shilen Knife -->
 		<production count="1" id="241" />
 	</item>
 	<item>
-		<!-- Blood of Saints -->
+		<!-- Sage's Blood -->
 		<ingredient count="1" id="316" />
 		<!-- Triple-Edged Jamadhr -->
 		<production count="1" id="260" />
 	</item>
 	<item>
-		<!-- Blood of Saints -->
+		<!-- Sage's Blood -->
 		<ingredient count="1" id="316" />
 		<!-- Tome of Blood -->
 		<production count="1" id="317" />
 	</item>
 	<item>
-		<!-- Blood of Saints -->
+		<!-- Sage's Blood -->
 		<ingredient count="1" id="316" />
 		<!-- War Hammer -->
 		<production count="1" id="293" />
 	</item>
 	<item>
-		<!-- Blood of Saints -->
+		<!-- Sage's Blood -->
 		<ingredient count="1" id="316" />
 		<!-- Dwarven Pike -->
 		<production count="1" id="296" />
 	</item>
 	<item>
-		<!-- Blood of Saints -->
+		<!-- Sage's Blood -->
 		<ingredient count="1" id="316" />
 		<!-- Two-Handed Sword -->
 		<production count="1" id="124" />
 	</item>
 	<item>
-		<!-- Blood of Saints -->
+		<!-- Sage's Blood -->
 		<ingredient count="1" id="316" />
 		<!-- Crimson Sword -->
 		<production count="1" id="127" />
 	</item>
 	<item>
-		<!-- Blood of Saints -->
+		<!-- Sage's Blood -->
 		<ingredient count="1" id="316" />
 		<!-- Elven Sword -->
 		<production count="1" id="130" />
@@ -10227,7 +10227,7 @@
 	<item>
 		<!-- Tome of Blood -->
 		<ingredient count="1" id="317" />
-		<!-- Blood of Saints -->
+		<!-- Sage's Blood -->
 		<production count="1" id="316" />
 	</item>
 	<item>
@@ -10293,7 +10293,7 @@
 	<item>
 		<!-- Crucifix of Blood -->
 		<ingredient count="1" id="318" />
-		<!-- Strengthened Long Bow -->
+		<!-- Reinforced Long Bow -->
 		<production count="1" id="279" />
 	</item>
 	<item>
@@ -10455,7 +10455,7 @@
 	<item>
 		<!-- Heathen's Book -->
 		<ingredient count="1" id="326" />
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<production count="1" id="202" />
 	</item>
 	<item>
@@ -10563,7 +10563,7 @@
 	<item>
 		<!-- Trident -->
 		<ingredient count="1" id="291" />
-		<!-- Strengthened Bow -->
+		<!-- Reinforced Bow -->
 		<production count="1" id="274" />
 	</item>
 	<item>
@@ -10905,7 +10905,7 @@
 	<item>
 		<!-- War Hammer -->
 		<ingredient count="1" id="293" />
-		<!-- Blood of Saints -->
+		<!-- Sage's Blood -->
 		<production count="1" id="316" />
 	</item>
 	<item>
@@ -10995,7 +10995,7 @@
 	<item>
 		<!-- Dwarven Pike -->
 		<ingredient count="1" id="296" />
-		<!-- Blood of Saints -->
+		<!-- Sage's Blood -->
 		<production count="1" id="316" />
 	</item>
 	<item>
@@ -11061,7 +11061,7 @@
 	<item>
 		<!-- Winged Spear -->
 		<ingredient count="1" id="93" />
-		<!-- Strengthened Long Bow -->
+		<!-- Reinforced Long Bow -->
 		<production count="1" id="279" />
 	</item>
 	<item>
@@ -11133,7 +11133,7 @@
 	<item>
 		<!-- War Pick -->
 		<ingredient count="1" id="294" />
-		<!-- Strengthened Long Bow -->
+		<!-- Reinforced Long Bow -->
 		<production count="1" id="279" />
 	</item>
 	<item>
@@ -11643,7 +11643,7 @@
 	<item>
 		<!-- Poleaxe -->
 		<ingredient count="1" id="95" />
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<production count="1" id="202" />
 	</item>
 	<item>
@@ -11829,7 +11829,7 @@
 	<item>
 		<!-- Saber -->
 		<ingredient count="1" id="123" />
-		<!-- Strengthened Bow -->
+		<!-- Reinforced Bow -->
 		<production count="1" id="274" />
 	</item>
 	<item>
@@ -11919,7 +11919,7 @@
 	<item>
 		<!-- Heavy Sword -->
 		<ingredient count="1" id="5285" />
-		<!-- Strengthened Bow -->
+		<!-- Reinforced Bow -->
 		<production count="1" id="274" />
 	</item>
 	<item>
@@ -12525,7 +12525,7 @@
 	<item>
 		<!-- Two-Handed Sword -->
 		<ingredient count="1" id="124" />
-		<!-- Blood of Saints -->
+		<!-- Sage's Blood -->
 		<production count="1" id="316" />
 	</item>
 	<item>
@@ -12615,7 +12615,7 @@
 	<item>
 		<!-- Crimson Sword -->
 		<ingredient count="1" id="127" />
-		<!-- Blood of Saints -->
+		<!-- Sage's Blood -->
 		<production count="1" id="316" />
 	</item>
 	<item>
@@ -12705,7 +12705,7 @@
 	<item>
 		<!-- Elven Sword -->
 		<ingredient count="1" id="130" />
-		<!-- Blood of Saints -->
+		<!-- Sage's Blood -->
 		<production count="1" id="316" />
 	</item>
 	<item>
@@ -12771,7 +12771,7 @@
 	<item>
 		<!-- Sword of Revolution -->
 		<ingredient count="1" id="129" />
-		<!-- Strengthened Long Bow -->
+		<!-- Reinforced Long Bow -->
 		<production count="1" id="279" />
 	</item>
 	<item>
@@ -13461,7 +13461,7 @@
 	<item>
 		<!-- Caliburs -->
 		<ingredient count="1" id="75" />
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<production count="1" id="202" />
 	</item>
 	<item>
@@ -13587,7 +13587,7 @@
 	<item>
 		<!-- Sword of Delusion -->
 		<ingredient count="1" id="76" />
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<production count="1" id="202" />
 	</item>
 	<item>
@@ -13713,7 +13713,7 @@
 	<item>
 		<!-- Tsurugi -->
 		<ingredient count="1" id="77" />
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<production count="1" id="202" />
 	</item>
 	<item>
@@ -13839,7 +13839,7 @@
 	<item>
 		<!-- Homunkulus's Sword -->
 		<ingredient count="1" id="84" />
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<production count="1" id="202" />
 	</item>
 	<item>
@@ -13965,7 +13965,7 @@
 	<item>
 		<!-- Sword of Limit -->
 		<ingredient count="1" id="132" />
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<production count="1" id="202" />
 	</item>
 	<item>
@@ -14091,7 +14091,7 @@
 	<item>
 		<!-- Sword of Nightmare -->
 		<ingredient count="1" id="134" />
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<production count="1" id="202" />
 	</item>
 	<item>
@@ -14217,7 +14217,7 @@
 	<item>
 		<!-- Sword of Whispering Death -->
 		<ingredient count="1" id="145" />
-		<!-- Mace of the Underworld -->
+		<!-- Mace of Underworld -->
 		<production count="1" id="202" />
 	</item>
 	<item>
@@ -17395,7 +17395,7 @@
 		<production count="1" id="268" />
 	</item>
 	<item>
-		<!-- Demon Dagger -->
+		<!-- Demon's Dagger -->
 		<ingredient count="1" id="234" />
 		<!-- Bellion Cestus -->
 		<production count="1" id="268" />
@@ -17461,7 +17461,7 @@
 		<production count="1" id="79" />
 	</item>
 	<item>
-		<!-- Demon Dagger -->
+		<!-- Demon's Dagger -->
 		<ingredient count="1" id="234" />
 		<!-- Sword of Damascus -->
 		<production count="1" id="79" />
@@ -17527,7 +17527,7 @@
 		<production count="1" id="97" />
 	</item>
 	<item>
-		<!-- Demon Dagger -->
+		<!-- Demon's Dagger -->
 		<ingredient count="1" id="234" />
 		<!-- Lance -->
 		<production count="1" id="97" />
@@ -17593,7 +17593,7 @@
 		<production count="1" id="171" />
 	</item>
 	<item>
-		<!-- Demon Dagger -->
+		<!-- Demon's Dagger -->
 		<ingredient count="1" id="234" />
 		<!-- Deadman's Glory -->
 		<production count="1" id="171" />
@@ -17659,7 +17659,7 @@
 		<production count="1" id="175" />
 	</item>
 	<item>
-		<!-- Demon Dagger -->
+		<!-- Demon's Dagger -->
 		<ingredient count="1" id="234" />
 		<!-- Art of Battle Axe -->
 		<production count="1" id="175" />
@@ -17725,7 +17725,7 @@
 		<production count="1" id="210" />
 	</item>
 	<item>
-		<!-- Demon Dagger -->
+		<!-- Demon's Dagger -->
 		<ingredient count="1" id="234" />
 		<!-- Staff of Evil Spirits -->
 		<production count="1" id="210" />
@@ -17791,7 +17791,7 @@
 		<production count="1" id="287" />
 	</item>
 	<item>
-		<!-- Demon Dagger -->
+		<!-- Demon's Dagger -->
 		<ingredient count="1" id="234" />
 		<!-- Bow of Peril -->
 		<production count="1" id="287" />
@@ -17857,7 +17857,7 @@
 		<production count="1" id="7883" />
 	</item>
 	<item>
-		<!-- Demon Dagger -->
+		<!-- Demon's Dagger -->
 		<ingredient count="1" id="234" />
 		<!-- Guardian Sword -->
 		<production count="1" id="7883" />
@@ -17923,7 +17923,7 @@
 		<production count="1" id="7889" />
 	</item>
 	<item>
-		<!-- Demon Dagger -->
+		<!-- Demon's Dagger -->
 		<ingredient count="1" id="234" />
 		<!-- Wizard's Tear -->
 		<production count="1" id="7889" />
@@ -17989,7 +17989,7 @@
 		<production count="1" id="7893" />
 	</item>
 	<item>
-		<!-- Demon Dagger -->
+		<!-- Demon's Dagger -->
 		<ingredient count="1" id="234" />
 		<!-- Kaim Vanul's Bones -->
 		<production count="1" id="7893" />
@@ -18055,7 +18055,7 @@
 		<production count="1" id="7901" />
 	</item>
 	<item>
-		<!-- Demon Dagger -->
+		<!-- Demon's Dagger -->
 		<ingredient count="1" id="234" />
 		<!-- Star Buster -->
 		<production count="1" id="7901" />
@@ -18093,67 +18093,67 @@
 	<item>
 		<!-- Sword of Damascus -->
 		<ingredient count="1" id="79" />
-		<!-- Demon Dagger -->
+		<!-- Demon's Dagger -->
 		<production count="1" id="234" />
 	</item>
 	<item>
 		<!-- Lance -->
 		<ingredient count="1" id="97" />
-		<!-- Demon Dagger -->
+		<!-- Demon's Dagger -->
 		<production count="1" id="234" />
 	</item>
 	<item>
 		<!-- Deadman's Glory -->
 		<ingredient count="1" id="171" />
-		<!-- Demon Dagger -->
+		<!-- Demon's Dagger -->
 		<production count="1" id="234" />
 	</item>
 	<item>
 		<!-- Art of Battle Axe -->
 		<ingredient count="1" id="175" />
-		<!-- Demon Dagger -->
+		<!-- Demon's Dagger -->
 		<production count="1" id="234" />
 	</item>
 	<item>
 		<!-- Staff of Evil Spirits -->
 		<ingredient count="1" id="210" />
-		<!-- Demon Dagger -->
+		<!-- Demon's Dagger -->
 		<production count="1" id="234" />
 	</item>
 	<item>
 		<!-- Bellion Cestus -->
 		<ingredient count="1" id="268" />
-		<!-- Demon Dagger -->
+		<!-- Demon's Dagger -->
 		<production count="1" id="234" />
 	</item>
 	<item>
 		<!-- Bow of Peril -->
 		<ingredient count="1" id="287" />
-		<!-- Demon Dagger -->
+		<!-- Demon's Dagger -->
 		<production count="1" id="234" />
 	</item>
 	<item>
 		<!-- Guardian Sword -->
 		<ingredient count="1" id="7883" />
-		<!-- Demon Dagger -->
+		<!-- Demon's Dagger -->
 		<production count="1" id="234" />
 	</item>
 	<item>
 		<!-- Wizard's Tear -->
 		<ingredient count="1" id="7889" />
-		<!-- Demon Dagger -->
+		<!-- Demon's Dagger -->
 		<production count="1" id="234" />
 	</item>
 	<item>
 		<!-- Kaim Vanul's Bones -->
 		<ingredient count="1" id="7893" />
-		<!-- Demon Dagger -->
+		<!-- Demon's Dagger -->
 		<production count="1" id="234" />
 	</item>
 	<item>
 		<!-- Star Buster -->
 		<ingredient count="1" id="7901" />
-		<!-- Demon Dagger -->
+		<!-- Demon's Dagger -->
 		<production count="1" id="234" />
 	</item>
 	<item>
@@ -18217,7 +18217,7 @@
 		<production count="1" id="7885" />
 	</item>
 	<item>
-		<!-- Strengthened Bow -->
+		<!-- Reinforced Bow -->
 		<ingredient count="1" id="274" />
 		<!-- Priest Sword -->
 		<production count="1" id="7885" />
@@ -18283,7 +18283,7 @@
 		<production count="1" id="7880" />
 	</item>
 	<item>
-		<!-- Strengthened Bow -->
+		<!-- Reinforced Bow -->
 		<ingredient count="1" id="274" />
 		<!-- Steel Sword -->
 		<production count="1" id="7880" />
@@ -18331,7 +18331,7 @@
 		<production count="1" id="7886" />
 	</item>
 	<item>
-		<!-- Strengthened Long Bow -->
+		<!-- Reinforced Long Bow -->
 		<ingredient count="1" id="279" />
 		<!-- Sword of Magic Fog -->
 		<production count="1" id="7886" />
@@ -18379,7 +18379,7 @@
 		<production count="1" id="7890" />
 	</item>
 	<item>
-		<!-- Strengthened Long Bow -->
+		<!-- Reinforced Long Bow -->
 		<ingredient count="1" id="279" />
 		<!-- Priest Mace -->
 		<production count="1" id="7890" />
@@ -18427,7 +18427,7 @@
 		<production count="1" id="7881" />
 	</item>
 	<item>
-		<!-- Strengthened Long Bow -->
+		<!-- Reinforced Long Bow -->
 		<ingredient count="1" id="279" />
 		<!-- Titan Sword -->
 		<production count="1" id="7881" />
@@ -18475,7 +18475,7 @@
 		<production count="1" id="7896" />
 	</item>
 	<item>
-		<!-- Strengthened Long Bow -->
+		<!-- Reinforced Long Bow -->
 		<ingredient count="1" id="279" />
 		<!-- Titan Hammer -->
 		<production count="1" id="7896" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/311262513.xml b/L2J_DataPack_BETA/dist/game/data/multisell/311262513.xml
index e9cb9516d6b1fe03000c9463c1e6fbb60a4e48aa..888b96f3e27ee7da9ec0eb6086f406c5a5c6b4c2 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/311262513.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/311262513.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Foundation Great Sword -->
 		<ingredient count="1" id="12375" />
@@ -193,11 +193,11 @@
 		<production count="1" id="10988" />
 	</item>
 	<item>
-		<!-- Foundation Demon Dagger -->
+		<!-- Foundation Demon's Dagger -->
 		<ingredient count="1" id="12399" />
 		<!-- Mammon's Varnish Enhancer -->
 		<ingredient count="1" id="12374" />
-		<!-- Demon Dagger - Great Gale -->
+		<!-- Demon's Dagger - Great Gale -->
 		<production count="1" id="10992" />
 	</item>
 	<item>
@@ -361,11 +361,11 @@
 		<production count="1" id="11075" />
 	</item>
 	<item>
-		<!-- Foundation Dark Legion -->
+		<!-- Foundation Dark Legion's Edge -->
 		<ingredient count="1" id="12420" />
 		<!-- Mammon's Varnish Enhancer -->
 		<ingredient count="3" id="12374" />
-		<!-- Dark Legion - Thunder -->
+		<!-- Dark Legion's Edge - Thunder -->
 		<production count="1" id="11080" />
 	</item>
 	<item>
@@ -625,7 +625,7 @@
 		<production count="1" id="11210" />
 	</item>
 	<item>
-		<!-- Foundation Sarnga -->
+		<!-- Foundation Sarunga -->
 		<ingredient count="1" id="12453" />
 		<!-- Mammon's Varnish Enhancer -->
 		<ingredient count="7" id="12374" />
@@ -965,7 +965,7 @@
 		<ingredient count="1" id="16037" />
 		<!-- Mammon's Varnish Enhancer -->
 		<ingredient count="16" id="12374" />
-		<!-- Vesper Singer - Tidal Wave -->
+		<!-- Vesper Singer - Hail -->
 		<production count="1" id="16051" />
 	</item>
 	<item>
@@ -985,11 +985,11 @@
 		<production count="1" id="16053" />
 	</item>
 	<item>
-		<!-- Vesper Schutze of Chaos -->
+		<!-- Vesper Shooter of Chaos -->
 		<ingredient count="1" id="16040" />
 		<!-- Mammon's Varnish Enhancer -->
 		<ingredient count="16" id="12374" />
-		<!-- Vesper Schutze - Clairvoyance -->
+		<!-- Vesper Shooter - Clairvoyance -->
 		<production count="1" id="16054" />
 	</item>
 	<item>
@@ -1161,11 +1161,11 @@
 		<production count="1" id="11389" />
 	</item>
 	<item>
-		<!-- Foundation Sealed Boots of Doom -->
+		<!-- Foundation Sealed Doom Boots -->
 		<ingredient count="1" id="12527" />
 		<!-- Mammon's Varnish Enhancer -->
 		<ingredient count="1" id="12374" />
-		<!-- Sealed Boots of Doom -->
+		<!-- Sealed Doom Boots -->
 		<production count="1" id="11390" />
 	</item>
 	<item>
@@ -1265,7 +1265,7 @@
 		<production count="1" id="11422" />
 	</item>
 	<item>
-		<!-- Foundation Dark Crystal Robe -->
+		<!-- Foundation Sealed Dark Crystal Robe -->
 		<ingredient count="1" id="12560" />
 		<!-- Mammon's Varnish Enhancer -->
 		<ingredient count="2" id="12374" />
@@ -1417,11 +1417,11 @@
 		<production count="1" id="11466" />
 	</item>
 	<item>
-		<!-- Foundation Sealed Nightmare Robe -->
+		<!-- Foundation Sealed Robe of Nightmare -->
 		<ingredient count="1" id="12604" />
 		<!-- Mammon's Varnish Enhancer -->
 		<ingredient count="2" id="12374" />
-		<!-- Sealed Nightmare Robe -->
+		<!-- Sealed Robe of Nightmare -->
 		<production count="1" id="11467" />
 	</item>
 	<item>
@@ -1973,7 +1973,7 @@
 		<ingredient count="1" id="12500" />
 		<!-- Mammon's Varnish Enhancer -->
 		<ingredient count="1" id="12374" />
-		<!-- Zubei's Helmet - Heavy Armor Use -->
+		<!-- Zubei's Helmet - Heavy Armor -->
 		<production count="1" id="11363" />
 	</item>
 	<item>
@@ -1989,7 +1989,7 @@
 		<ingredient count="1" id="12500" />
 		<!-- Mammon's Varnish Enhancer -->
 		<ingredient count="1" id="12374" />
-		<!-- Zubei's Helmet - Robe Use -->
+		<!-- Zubei's Helmet - Robe -->
 		<production count="1" id="12979" />
 	</item>
 	<item>
@@ -1997,7 +1997,7 @@
 		<ingredient count="1" id="12510" />
 		<!-- Mammon's Varnish Enhancer -->
 		<ingredient count="1" id="12374" />
-		<!-- Avadon Circlet - Heavy Armor Use -->
+		<!-- Avadon Circlet - Heavy Armor -->
 		<production count="1" id="11373" />
 	</item>
 	<item>
@@ -2013,7 +2013,7 @@
 		<ingredient count="1" id="12510" />
 		<!-- Mammon's Varnish Enhancer -->
 		<ingredient count="1" id="12374" />
-		<!-- Avadon Circlet - Robe Use -->
+		<!-- Avadon Circlet - Robe -->
 		<production count="1" id="12981" />
 	</item>
 	<item>
@@ -2021,7 +2021,7 @@
 		<ingredient count="1" id="12524" />
 		<!-- Mammon's Varnish Enhancer -->
 		<ingredient count="1" id="12374" />
-		<!-- Doom Helmet - Heavy Armor Use -->
+		<!-- Doom Helmet - Heavy Armor -->
 		<production count="1" id="11387" />
 	</item>
 	<item>
@@ -2037,7 +2037,7 @@
 		<ingredient count="1" id="12524" />
 		<!-- Mammon's Varnish Enhancer -->
 		<ingredient count="1" id="12374" />
-		<!-- Doom Helmet - Robe Use -->
+		<!-- Doom Helmet - Robe -->
 		<production count="1" id="12983" />
 	</item>
 	<item>
@@ -2045,7 +2045,7 @@
 		<ingredient count="1" id="12540" />
 		<!-- Mammon's Varnish Enhancer -->
 		<ingredient count="1" id="12374" />
-		<!-- Blue Wolf Helmet - Heavy Armor Use -->
+		<!-- Blue Wolf Helmet - Heavy Armor -->
 		<production count="1" id="11403" />
 	</item>
 	<item>
@@ -2061,7 +2061,7 @@
 		<ingredient count="1" id="12540" />
 		<!-- Mammon's Varnish Enhancer -->
 		<ingredient count="1" id="12374" />
-		<!-- Blue Wolf Helmet - Robe Use -->
+		<!-- Blue Wolf Helmet - Robe -->
 		<production count="1" id="12985" />
 	</item>
 	<item>
@@ -2069,7 +2069,7 @@
 		<ingredient count="1" id="12563" />
 		<!-- Mammon's Varnish Enhancer -->
 		<ingredient count="2" id="12374" />
-		<!-- Sealed Dark Crystal Helmet - Heavy Armor Use -->
+		<!-- Sealed Dark Crystal Helmet - Heavy Armor -->
 		<production count="1" id="11426" />
 	</item>
 	<item>
@@ -2085,7 +2085,7 @@
 		<ingredient count="1" id="12563" />
 		<!-- Mammon's Varnish Enhancer -->
 		<ingredient count="2" id="12374" />
-		<!-- Sealed Dark Crystal Helmet - Robe Use -->
+		<!-- Sealed Dark Crystal Helmet - Robe -->
 		<production count="1" id="12995" />
 	</item>
 	<item>
@@ -2093,7 +2093,7 @@
 		<ingredient count="1" id="12571" />
 		<!-- Mammon's Varnish Enhancer -->
 		<ingredient count="2" id="12374" />
-		<!-- Sealed Tallum Helmet - Heavy Armor Use -->
+		<!-- Sealed Tallum Helmet - Heavy Armor -->
 		<production count="1" id="11434" />
 	</item>
 	<item>
@@ -2109,7 +2109,7 @@
 		<ingredient count="1" id="12571" />
 		<!-- Mammon's Varnish Enhancer -->
 		<ingredient count="2" id="12374" />
-		<!-- Sealed Tallum Helmet - Robe Use -->
+		<!-- Sealed Tallum Helmet - Robe -->
 		<production count="1" id="12997" />
 	</item>
 	<item>
@@ -2117,7 +2117,7 @@
 		<ingredient count="1" id="12599" />
 		<!-- Mammon's Varnish Enhancer -->
 		<ingredient count="2" id="12374" />
-		<!-- Sealed Majestic Circlet - Heavy Armor Use -->
+		<!-- Sealed Majestic Circlet - Heavy Armor -->
 		<production count="1" id="11462" />
 	</item>
 	<item>
@@ -2133,7 +2133,7 @@
 		<ingredient count="1" id="12599" />
 		<!-- Mammon's Varnish Enhancer -->
 		<ingredient count="2" id="12374" />
-		<!-- Sealed Majestic Circlet - Robe Use -->
+		<!-- Sealed Majestic Circlet - Robe -->
 		<production count="1" id="12999" />
 	</item>
 	<item>
@@ -2141,7 +2141,7 @@
 		<ingredient count="1" id="12607" />
 		<!-- Mammon's Varnish Enhancer -->
 		<ingredient count="2" id="12374" />
-		<!-- Sealed Helm of Nightmare - Heavy Armor Use -->
+		<!-- Sealed Helm of Nightmare - Heavy Armor -->
 		<production count="1" id="11470" />
 	</item>
 	<item>
@@ -2157,7 +2157,7 @@
 		<ingredient count="1" id="12607" />
 		<!-- Mammon's Varnish Enhancer -->
 		<ingredient count="2" id="12374" />
-		<!-- Sealed Helm of Nightmare - Robe Use -->
+		<!-- Sealed Helm of Nightmare - Robe -->
 		<production count="1" id="13001" />
 	</item>
 	<item>
@@ -2355,289 +2355,289 @@
 	<item>
 		<!-- Zubei's Helmet - Light Armor Use -->
 		<ingredient count="1" id="12978" />
-		<!-- Zubei's Helmet - Heavy Armor Use -->
+		<!-- Zubei's Helmet - Heavy Armor -->
 		<production count="1" id="11363" />
 	</item>
 	<item>
-		<!-- Zubei's Helmet - Robe Use -->
+		<!-- Zubei's Helmet - Robe -->
 		<ingredient count="1" id="12979" />
-		<!-- Zubei's Helmet - Heavy Armor Use -->
+		<!-- Zubei's Helmet - Heavy Armor -->
 		<production count="1" id="11363" />
 	</item>
 	<item>
-		<!-- Zubei's Helmet - Heavy Armor Use -->
+		<!-- Zubei's Helmet - Heavy Armor -->
 		<ingredient count="1" id="11363" />
 		<!-- Zubei's Helmet - Light Armor Use -->
 		<production count="1" id="12978" />
 	</item>
 	<item>
-		<!-- Zubei's Helmet - Robe Use -->
+		<!-- Zubei's Helmet - Robe -->
 		<ingredient count="1" id="12979" />
 		<!-- Zubei's Helmet - Light Armor Use -->
 		<production count="1" id="12978" />
 	</item>
 	<item>
-		<!-- Zubei's Helmet - Heavy Armor Use -->
+		<!-- Zubei's Helmet - Heavy Armor -->
 		<ingredient count="1" id="11363" />
-		<!-- Zubei's Helmet - Robe Use -->
+		<!-- Zubei's Helmet - Robe -->
 		<production count="1" id="12979" />
 	</item>
 	<item>
 		<!-- Zubei's Helmet - Light Armor Use -->
 		<ingredient count="1" id="12978" />
-		<!-- Zubei's Helmet - Robe Use -->
+		<!-- Zubei's Helmet - Robe -->
 		<production count="1" id="12979" />
 	</item>
 	<item>
 		<!-- Avadon Circlet - Light Armor Use -->
 		<ingredient count="1" id="12980" />
-		<!-- Avadon Circlet - Heavy Armor Use -->
+		<!-- Avadon Circlet - Heavy Armor -->
 		<production count="1" id="11373" />
 	</item>
 	<item>
-		<!-- Avadon Circlet - Robe Use -->
+		<!-- Avadon Circlet - Robe -->
 		<ingredient count="1" id="12981" />
-		<!-- Avadon Circlet - Heavy Armor Use -->
+		<!-- Avadon Circlet - Heavy Armor -->
 		<production count="1" id="11373" />
 	</item>
 	<item>
-		<!-- Avadon Circlet - Heavy Armor Use -->
+		<!-- Avadon Circlet - Heavy Armor -->
 		<ingredient count="1" id="11373" />
 		<!-- Avadon Circlet - Light Armor Use -->
 		<production count="1" id="12980" />
 	</item>
 	<item>
-		<!-- Avadon Circlet - Robe Use -->
+		<!-- Avadon Circlet - Robe -->
 		<ingredient count="1" id="12981" />
 		<!-- Avadon Circlet - Light Armor Use -->
 		<production count="1" id="12980" />
 	</item>
 	<item>
-		<!-- Avadon Circlet - Heavy Armor Use -->
+		<!-- Avadon Circlet - Heavy Armor -->
 		<ingredient count="1" id="11373" />
-		<!-- Avadon Circlet - Robe Use -->
+		<!-- Avadon Circlet - Robe -->
 		<production count="1" id="12981" />
 	</item>
 	<item>
 		<!-- Avadon Circlet - Light Armor Use -->
 		<ingredient count="1" id="12980" />
-		<!-- Avadon Circlet - Robe Use -->
+		<!-- Avadon Circlet - Robe -->
 		<production count="1" id="12981" />
 	</item>
 	<item>
 		<!-- Doom Helmet - Light Armor Use -->
 		<ingredient count="1" id="12982" />
-		<!-- Doom Helmet - Heavy Armor Use -->
+		<!-- Doom Helmet - Heavy Armor -->
 		<production count="1" id="11387" />
 	</item>
 	<item>
-		<!-- Doom Helmet - Robe Use -->
+		<!-- Doom Helmet - Robe -->
 		<ingredient count="1" id="12983" />
-		<!-- Doom Helmet - Heavy Armor Use -->
+		<!-- Doom Helmet - Heavy Armor -->
 		<production count="1" id="11387" />
 	</item>
 	<item>
-		<!-- Doom Helmet - Heavy Armor Use -->
+		<!-- Doom Helmet - Heavy Armor -->
 		<ingredient count="1" id="11387" />
 		<!-- Doom Helmet - Light Armor Use -->
 		<production count="1" id="12982" />
 	</item>
 	<item>
-		<!-- Doom Helmet - Robe Use -->
+		<!-- Doom Helmet - Robe -->
 		<ingredient count="1" id="12983" />
 		<!-- Doom Helmet - Light Armor Use -->
 		<production count="1" id="12982" />
 	</item>
 	<item>
-		<!-- Doom Helmet - Heavy Armor Use -->
+		<!-- Doom Helmet - Heavy Armor -->
 		<ingredient count="1" id="11387" />
-		<!-- Doom Helmet - Robe Use -->
+		<!-- Doom Helmet - Robe -->
 		<production count="1" id="12983" />
 	</item>
 	<item>
 		<!-- Doom Helmet - Light Armor Use -->
 		<ingredient count="1" id="12982" />
-		<!-- Doom Helmet - Robe Use -->
+		<!-- Doom Helmet - Robe -->
 		<production count="1" id="12983" />
 	</item>
 	<item>
 		<!-- Blue Wolf Helmet - Light Armor Use -->
 		<ingredient count="1" id="12984" />
-		<!-- Blue Wolf Helmet - Heavy Armor Use -->
+		<!-- Blue Wolf Helmet - Heavy Armor -->
 		<production count="1" id="11403" />
 	</item>
 	<item>
-		<!-- Blue Wolf Helmet - Robe Use -->
+		<!-- Blue Wolf Helmet - Robe -->
 		<ingredient count="1" id="12985" />
-		<!-- Blue Wolf Helmet - Heavy Armor Use -->
+		<!-- Blue Wolf Helmet - Heavy Armor -->
 		<production count="1" id="11403" />
 	</item>
 	<item>
-		<!-- Blue Wolf Helmet - Heavy Armor Use -->
+		<!-- Blue Wolf Helmet - Heavy Armor -->
 		<ingredient count="1" id="11403" />
 		<!-- Blue Wolf Helmet - Light Armor Use -->
 		<production count="1" id="12984" />
 	</item>
 	<item>
-		<!-- Blue Wolf Helmet - Robe Use -->
+		<!-- Blue Wolf Helmet - Robe -->
 		<ingredient count="1" id="12985" />
 		<!-- Blue Wolf Helmet - Light Armor Use -->
 		<production count="1" id="12984" />
 	</item>
 	<item>
-		<!-- Blue Wolf Helmet - Heavy Armor Use -->
+		<!-- Blue Wolf Helmet - Heavy Armor -->
 		<ingredient count="1" id="11403" />
-		<!-- Blue Wolf Helmet - Robe Use -->
+		<!-- Blue Wolf Helmet - Robe -->
 		<production count="1" id="12985" />
 	</item>
 	<item>
 		<!-- Blue Wolf Helmet - Light Armor Use -->
 		<ingredient count="1" id="12984" />
-		<!-- Blue Wolf Helmet - Robe Use -->
+		<!-- Blue Wolf Helmet - Robe -->
 		<production count="1" id="12985" />
 	</item>
 	<item>
 		<!-- Sealed Dark Crystal Helmet - Light Armor Use -->
 		<ingredient count="1" id="12994" />
-		<!-- Sealed Dark Crystal Helmet - Heavy Armor Use -->
+		<!-- Sealed Dark Crystal Helmet - Heavy Armor -->
 		<production count="1" id="11426" />
 	</item>
 	<item>
-		<!-- Sealed Dark Crystal Helmet - Robe Use -->
+		<!-- Sealed Dark Crystal Helmet - Robe -->
 		<ingredient count="1" id="12995" />
-		<!-- Sealed Dark Crystal Helmet - Heavy Armor Use -->
+		<!-- Sealed Dark Crystal Helmet - Heavy Armor -->
 		<production count="1" id="11426" />
 	</item>
 	<item>
-		<!-- Sealed Dark Crystal Helmet - Heavy Armor Use -->
+		<!-- Sealed Dark Crystal Helmet - Heavy Armor -->
 		<ingredient count="1" id="11426" />
 		<!-- Sealed Dark Crystal Helmet - Light Armor Use -->
 		<production count="1" id="12994" />
 	</item>
 	<item>
-		<!-- Sealed Dark Crystal Helmet - Robe Use -->
+		<!-- Sealed Dark Crystal Helmet - Robe -->
 		<ingredient count="1" id="12995" />
 		<!-- Sealed Dark Crystal Helmet - Light Armor Use -->
 		<production count="1" id="12994" />
 	</item>
 	<item>
-		<!-- Sealed Dark Crystal Helmet - Heavy Armor Use -->
+		<!-- Sealed Dark Crystal Helmet - Heavy Armor -->
 		<ingredient count="1" id="11426" />
-		<!-- Sealed Dark Crystal Helmet - Robe Use -->
+		<!-- Sealed Dark Crystal Helmet - Robe -->
 		<production count="1" id="12995" />
 	</item>
 	<item>
 		<!-- Sealed Dark Crystal Helmet - Light Armor Use -->
 		<ingredient count="1" id="12994" />
-		<!-- Sealed Dark Crystal Helmet - Robe Use -->
+		<!-- Sealed Dark Crystal Helmet - Robe -->
 		<production count="1" id="12995" />
 	</item>
 	<item>
 		<!-- Sealed Tallum Helmet - Light Armor Use -->
 		<ingredient count="1" id="12996" />
-		<!-- Sealed Tallum Helmet - Heavy Armor Use -->
+		<!-- Sealed Tallum Helmet - Heavy Armor -->
 		<production count="1" id="11434" />
 	</item>
 	<item>
-		<!-- Sealed Tallum Helmet - Robe Use -->
+		<!-- Sealed Tallum Helmet - Robe -->
 		<ingredient count="1" id="12997" />
-		<!-- Sealed Tallum Helmet - Heavy Armor Use -->
+		<!-- Sealed Tallum Helmet - Heavy Armor -->
 		<production count="1" id="11434" />
 	</item>
 	<item>
-		<!-- Sealed Tallum Helmet - Heavy Armor Use -->
+		<!-- Sealed Tallum Helmet - Heavy Armor -->
 		<ingredient count="1" id="11434" />
 		<!-- Sealed Tallum Helmet - Light Armor Use -->
 		<production count="1" id="12996" />
 	</item>
 	<item>
-		<!-- Sealed Tallum Helmet - Robe Use -->
+		<!-- Sealed Tallum Helmet - Robe -->
 		<ingredient count="1" id="12997" />
 		<!-- Sealed Tallum Helmet - Light Armor Use -->
 		<production count="1" id="12996" />
 	</item>
 	<item>
-		<!-- Sealed Tallum Helmet - Heavy Armor Use -->
+		<!-- Sealed Tallum Helmet - Heavy Armor -->
 		<ingredient count="1" id="11434" />
-		<!-- Sealed Tallum Helmet - Robe Use -->
+		<!-- Sealed Tallum Helmet - Robe -->
 		<production count="1" id="12997" />
 	</item>
 	<item>
 		<!-- Sealed Tallum Helmet - Light Armor Use -->
 		<ingredient count="1" id="12996" />
-		<!-- Sealed Tallum Helmet - Robe Use -->
+		<!-- Sealed Tallum Helmet - Robe -->
 		<production count="1" id="12997" />
 	</item>
 	<item>
 		<!-- Sealed Majestic Circlet - Light Armor Use -->
 		<ingredient count="1" id="12998" />
-		<!-- Sealed Majestic Circlet - Heavy Armor Use -->
+		<!-- Sealed Majestic Circlet - Heavy Armor -->
 		<production count="1" id="11462" />
 	</item>
 	<item>
-		<!-- Sealed Majestic Circlet - Robe Use -->
+		<!-- Sealed Majestic Circlet - Robe -->
 		<ingredient count="1" id="12999" />
-		<!-- Sealed Majestic Circlet - Heavy Armor Use -->
+		<!-- Sealed Majestic Circlet - Heavy Armor -->
 		<production count="1" id="11462" />
 	</item>
 	<item>
-		<!-- Sealed Majestic Circlet - Heavy Armor Use -->
+		<!-- Sealed Majestic Circlet - Heavy Armor -->
 		<ingredient count="1" id="11462" />
 		<!-- Sealed Majestic Circlet - Light Armor Use -->
 		<production count="1" id="12998" />
 	</item>
 	<item>
-		<!-- Sealed Majestic Circlet - Robe Use -->
+		<!-- Sealed Majestic Circlet - Robe -->
 		<ingredient count="1" id="12999" />
 		<!-- Sealed Majestic Circlet - Light Armor Use -->
 		<production count="1" id="12998" />
 	</item>
 	<item>
-		<!-- Sealed Majestic Circlet - Heavy Armor Use -->
+		<!-- Sealed Majestic Circlet - Heavy Armor -->
 		<ingredient count="1" id="11462" />
-		<!-- Sealed Majestic Circlet - Robe Use -->
+		<!-- Sealed Majestic Circlet - Robe -->
 		<production count="1" id="12999" />
 	</item>
 	<item>
 		<!-- Sealed Majestic Circlet - Light Armor Use -->
 		<ingredient count="1" id="12998" />
-		<!-- Sealed Majestic Circlet - Robe Use -->
+		<!-- Sealed Majestic Circlet - Robe -->
 		<production count="1" id="12999" />
 	</item>
 	<item>
 		<!-- Sealed Helm of Nightmare - Light Armor Use -->
 		<ingredient count="1" id="13000" />
-		<!-- Sealed Helm of Nightmare - Heavy Armor Use -->
+		<!-- Sealed Helm of Nightmare - Heavy Armor -->
 		<production count="1" id="11470" />
 	</item>
 	<item>
-		<!-- Sealed Helm of Nightmare - Robe Use -->
+		<!-- Sealed Helm of Nightmare - Robe -->
 		<ingredient count="1" id="13001" />
-		<!-- Sealed Helm of Nightmare - Heavy Armor Use -->
+		<!-- Sealed Helm of Nightmare - Heavy Armor -->
 		<production count="1" id="11470" />
 	</item>
 	<item>
-		<!-- Sealed Helm of Nightmare - Heavy Armor Use -->
+		<!-- Sealed Helm of Nightmare - Heavy Armor -->
 		<ingredient count="1" id="11470" />
 		<!-- Sealed Helm of Nightmare - Light Armor Use -->
 		<production count="1" id="13000" />
 	</item>
 	<item>
-		<!-- Sealed Helm of Nightmare - Robe Use -->
+		<!-- Sealed Helm of Nightmare - Robe -->
 		<ingredient count="1" id="13001" />
 		<!-- Sealed Helm of Nightmare - Light Armor Use -->
 		<production count="1" id="13000" />
 	</item>
 	<item>
-		<!-- Sealed Helm of Nightmare - Heavy Armor Use -->
+		<!-- Sealed Helm of Nightmare - Heavy Armor -->
 		<ingredient count="1" id="11470" />
-		<!-- Sealed Helm of Nightmare - Robe Use -->
+		<!-- Sealed Helm of Nightmare - Robe -->
 		<production count="1" id="13001" />
 	</item>
 	<item>
 		<!-- Sealed Helm of Nightmare - Light Armor Use -->
 		<ingredient count="1" id="13000" />
-		<!-- Sealed Helm of Nightmare - Robe Use -->
+		<!-- Sealed Helm of Nightmare - Robe -->
 		<production count="1" id="13001" />
 	</item>
 </list>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/311262516.xml b/L2J_DataPack_BETA/dist/game/data/multisell/311262516.xml
index 12ac91de77389b5fa840a6930d64754344595a87..d4c5ba0ac5ee613034c0adf9d9ed64bb96a3addd 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/311262516.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/311262516.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Zubei's Leather Shirt -->
 		<ingredient count="1" id="11354" />
@@ -133,15 +133,15 @@
 		<production count="1" id="374" />
 	</item>
 	<item>
-		<!-- Nightmarish Leather Armor -->
+		<!-- Leather Armor of Nightmare -->
 		<ingredient count="1" id="11475" />
-		<!-- Nightmarish Leather Armor -->
+		<!-- Leather Armor of Nightmare -->
 		<production count="1" id="2394" />
 	</item>
 	<item>
-		<!-- Nightmare Robe -->
+		<!-- Robe of Nightmare -->
 		<ingredient count="1" id="11476" />
-		<!-- Nightmare Robe -->
+		<!-- Robe of Nightmare -->
 		<production count="1" id="2408" />
 	</item>
 	<item>
@@ -181,9 +181,9 @@
 		<production count="1" id="10235" />
 	</item>
 	<item>
-		<!-- Dynasty Jewel Leather Mail -->
+		<!-- Dynasty Jewel Leather Armor -->
 		<ingredient count="1" id="11540" />
-		<!-- Dynasty Jewel Leather Mail -->
+		<!-- Dynasty Jewel Leather Armor -->
 		<production count="1" id="10232" />
 	</item>
 	<item>
@@ -231,19 +231,19 @@
 	<item>
 		<!-- Zubei's Breastplate -->
 		<ingredient count="1" id="11364" />
-		<!-- Zubei's Gauntlet - Heavy Armor Use -->
+		<!-- Zubei's Gauntlet - Heavy Armor -->
 		<production count="1" id="11356" />
 	</item>
 	<item>
 		<!-- Zubei's Breastplate -->
 		<ingredient count="1" id="11364" />
-		<!-- Zubei's Boots - Heavy Armor Use -->
+		<!-- Zubei's Boots - Heavy Armor -->
 		<production count="1" id="11359" />
 	</item>
 	<item>
 		<!-- Zubei's Breastplate -->
 		<ingredient count="1" id="11364" />
-		<!-- Zubei's Helmet - Heavy Armor Use -->
+		<!-- Zubei's Helmet - Heavy Armor -->
 		<production count="1" id="11363" />
 	</item>
 	<item>
@@ -255,19 +255,19 @@
 	<item>
 		<!-- Tunic of Zubei -->
 		<ingredient count="1" id="11377" />
-		<!-- Zubei's Gauntlet - Robe Use -->
+		<!-- Zubei's Gauntlet - Robe -->
 		<production count="1" id="11358" />
 	</item>
 	<item>
 		<!-- Tunic of Zubei -->
 		<ingredient count="1" id="11377" />
-		<!-- Zubei's Boots - Robe Use -->
+		<!-- Zubei's Boots - Robe -->
 		<production count="1" id="11361" />
 	</item>
 	<item>
 		<!-- Tunic of Zubei -->
 		<ingredient count="1" id="11377" />
-		<!-- Zubei's Helmet - Robe Use -->
+		<!-- Zubei's Helmet - Robe -->
 		<production count="1" id="12979" />
 	</item>
 	<item>
@@ -297,37 +297,37 @@
 	<item>
 		<!-- Avadon Breastplate -->
 		<ingredient count="1" id="11376" />
-		<!-- Avadon Gloves - Heavy Armor Use -->
+		<!-- Avadon Gloves - Heavy Armor -->
 		<production count="1" id="11365" />
 	</item>
 	<item>
 		<!-- Avadon Breastplate -->
 		<ingredient count="1" id="11376" />
-		<!-- Avadon Boots - Heavy Armor Use -->
+		<!-- Avadon Boots - Heavy Armor -->
 		<production count="1" id="11370" />
 	</item>
 	<item>
 		<!-- Avadon Breastplate -->
 		<ingredient count="1" id="11376" />
-		<!-- Avadon Circlet - Heavy Armor Use -->
+		<!-- Avadon Circlet - Heavy Armor -->
 		<production count="1" id="11373" />
 	</item>
 	<item>
 		<!-- Avadon Robe -->
 		<ingredient count="1" id="11369" />
-		<!-- Avadon Gloves - Robe Use -->
+		<!-- Avadon Gloves - Robe -->
 		<production count="1" id="11367" />
 	</item>
 	<item>
 		<!-- Avadon Robe -->
 		<ingredient count="1" id="11369" />
-		<!-- Avadon Boots - Robe Use -->
+		<!-- Avadon Boots - Robe -->
 		<production count="1" id="11372" />
 	</item>
 	<item>
 		<!-- Avadon Robe -->
 		<ingredient count="1" id="11369" />
-		<!-- Avadon Circlet - Robe Use -->
+		<!-- Avadon Circlet - Robe -->
 		<production count="1" id="12981" />
 	</item>
 	<item>
@@ -351,19 +351,19 @@
 	<item>
 		<!-- Doom Plate Armor -->
 		<ingredient count="1" id="11386" />
-		<!-- Doom Gloves - Heavy Armor Use -->
+		<!-- Doom Gloves - Heavy Armor -->
 		<production count="1" id="11379" />
 	</item>
 	<item>
 		<!-- Doom Plate Armor -->
 		<ingredient count="1" id="11386" />
-		<!-- Doom Boots - Heavy Armor Use -->
+		<!-- Doom Boots - Heavy Armor -->
 		<production count="1" id="11382" />
 	</item>
 	<item>
 		<!-- Doom Plate Armor -->
 		<ingredient count="1" id="11386" />
-		<!-- Doom Helmet - Heavy Armor Use -->
+		<!-- Doom Helmet - Heavy Armor -->
 		<production count="1" id="11387" />
 	</item>
 	<item>
@@ -375,19 +375,19 @@
 	<item>
 		<!-- Tunic of Doom -->
 		<ingredient count="1" id="11393" />
-		<!-- Doom Gloves - Robe Use -->
+		<!-- Doom Gloves - Robe -->
 		<production count="1" id="11381" />
 	</item>
 	<item>
 		<!-- Tunic of Doom -->
 		<ingredient count="1" id="11393" />
-		<!-- Doom Boots - Robe Use -->
+		<!-- Doom Boots - Robe -->
 		<production count="1" id="11384" />
 	</item>
 	<item>
 		<!-- Tunic of Doom -->
 		<ingredient count="1" id="11393" />
-		<!-- Doom Helmet - Robe Use -->
+		<!-- Doom Helmet - Robe -->
 		<production count="1" id="12983" />
 	</item>
 	<item>
@@ -417,19 +417,19 @@
 	<item>
 		<!-- Blue Wolf Breastplate -->
 		<ingredient count="1" id="11405" />
-		<!-- Blue Wolf Gloves - Heavy Armor Use -->
+		<!-- Blue Wolf Gloves - Heavy Armor -->
 		<production count="1" id="11399" />
 	</item>
 	<item>
 		<!-- Blue Wolf Breastplate -->
 		<ingredient count="1" id="11405" />
-		<!-- Blue Wolf Boots - Heavy Armor Use -->
+		<!-- Blue Wolf Boots - Heavy Armor -->
 		<production count="1" id="11396" />
 	</item>
 	<item>
 		<!-- Blue Wolf Breastplate -->
 		<ingredient count="1" id="11405" />
-		<!-- Blue Wolf Helmet - Heavy Armor Use -->
+		<!-- Blue Wolf Helmet - Heavy Armor -->
 		<production count="1" id="11403" />
 	</item>
 	<item>
@@ -441,19 +441,19 @@
 	<item>
 		<!-- Blue Wolf Tunic -->
 		<ingredient count="1" id="11402" />
-		<!-- Blue Wolf Gloves - Robe Use -->
+		<!-- Blue Wolf Gloves - Robe -->
 		<production count="1" id="11401" />
 	</item>
 	<item>
 		<!-- Blue Wolf Tunic -->
 		<ingredient count="1" id="11402" />
-		<!-- Blue Wolf Boots - Robe Use -->
+		<!-- Blue Wolf Boots - Robe -->
 		<production count="1" id="11398" />
 	</item>
 	<item>
 		<!-- Blue Wolf Tunic -->
 		<ingredient count="1" id="11402" />
-		<!-- Blue Wolf Helmet - Robe Use -->
+		<!-- Blue Wolf Helmet - Robe -->
 		<production count="1" id="12985" />
 	</item>
 	<item>
@@ -489,37 +489,37 @@
 	<item>
 		<!-- Dark Crystal Breastplate -->
 		<ingredient count="1" id="11418" />
-		<!-- Dark Crystal Gloves - Heavy Armor Use -->
+		<!-- Dark Crystal Gloves - Heavy Armor -->
 		<production count="1" id="11408" />
 	</item>
 	<item>
 		<!-- Dark Crystal Breastplate -->
 		<ingredient count="1" id="11418" />
-		<!-- Dark Crystal Boots - Heavy Armor Use -->
+		<!-- Dark Crystal Boots - Heavy Armor -->
 		<production count="1" id="11413" />
 	</item>
 	<item>
 		<!-- Dark Crystal Breastplate -->
 		<ingredient count="1" id="11418" />
-		<!-- Dark Crystal Helmet - Heavy Armor Use -->
+		<!-- Dark Crystal Helmet - Heavy Armor -->
 		<production count="1" id="11417" />
 	</item>
 	<item>
 		<!-- Dark Crystal Robe -->
 		<ingredient count="1" id="11412" />
-		<!-- Dark Crystal Gloves - Robe Use -->
+		<!-- Dark Crystal Gloves - Robe -->
 		<production count="1" id="11410" />
 	</item>
 	<item>
 		<!-- Dark Crystal Robe -->
 		<ingredient count="1" id="11412" />
-		<!-- Dark Crystal Boots - Robe Use -->
+		<!-- Dark Crystal Boots - Robe -->
 		<production count="1" id="11415" />
 	</item>
 	<item>
 		<!-- Dark Crystal Robe -->
 		<ingredient count="1" id="11412" />
-		<!-- Dark Crystal Helmet - Robe Use -->
+		<!-- Dark Crystal Helmet - Robe -->
 		<production count="1" id="12987" />
 	</item>
 	<item>
@@ -543,19 +543,19 @@
 	<item>
 		<!-- Tallum Plate Armor -->
 		<ingredient count="1" id="11445" />
-		<!-- Tallum Gloves - Heavy Armor Use -->
+		<!-- Tallum Gloves - Heavy Armor -->
 		<production count="1" id="11437" />
 	</item>
 	<item>
 		<!-- Tallum Plate Armor -->
 		<ingredient count="1" id="11445" />
-		<!-- Tallum Boots - Heavy Armor Use -->
+		<!-- Tallum Boots - Heavy Armor -->
 		<production count="1" id="11441" />
 	</item>
 	<item>
 		<!-- Tallum Plate Armor -->
 		<ingredient count="1" id="11445" />
-		<!-- Tallum Helmet - Heavy Armor Use -->
+		<!-- Tallum Helmet - Heavy Armor -->
 		<production count="1" id="11446" />
 	</item>
 	<item>
@@ -567,19 +567,19 @@
 	<item>
 		<!-- Tallum Tunic -->
 		<ingredient count="1" id="11444" />
-		<!-- Tallum Gloves - Robe Use -->
+		<!-- Tallum Gloves - Robe -->
 		<production count="1" id="11439" />
 	</item>
 	<item>
 		<!-- Tallum Tunic -->
 		<ingredient count="1" id="11444" />
-		<!-- Tallum Boots - Robe Use -->
+		<!-- Tallum Boots - Robe -->
 		<production count="1" id="11443" />
 	</item>
 	<item>
 		<!-- Tallum Tunic -->
 		<ingredient count="1" id="11444" />
-		<!-- Tallum Helmet - Robe Use -->
+		<!-- Tallum Helmet - Robe -->
 		<production count="1" id="12989" />
 	</item>
 	<item>
@@ -603,53 +603,53 @@
 	<item>
 		<!-- Majestic Plate Armor -->
 		<ingredient count="1" id="11457" />
-		<!-- Majestic Gauntlet - Heavy Armor Use -->
+		<!-- Majestic Gauntlet - Heavy Armor -->
 		<production count="1" id="11448" />
 	</item>
 	<item>
 		<!-- Majestic Plate Armor -->
 		<ingredient count="1" id="11457" />
-		<!-- Majestic Boots - Heavy Armor Use -->
+		<!-- Majestic Boots - Heavy Armor -->
 		<production count="1" id="11453" />
 	</item>
 	<item>
 		<!-- Majestic Plate Armor -->
 		<ingredient count="1" id="11457" />
-		<!-- Majestic Circlet - Heavy Armor Use -->
+		<!-- Majestic Circlet - Heavy Armor -->
 		<production count="1" id="11456" />
 	</item>
 	<item>
 		<!-- Majestic Robe -->
 		<ingredient count="1" id="11452" />
-		<!-- Majestic Gauntlet - Robe Use -->
+		<!-- Majestic Gauntlet - Robe -->
 		<production count="1" id="11450" />
 	</item>
 	<item>
 		<!-- Majestic Robe -->
 		<ingredient count="1" id="11452" />
-		<!-- Majestic Boots - Robe Use -->
+		<!-- Majestic Boots - Robe -->
 		<production count="1" id="11455" />
 	</item>
 	<item>
 		<!-- Majestic Robe -->
 		<ingredient count="1" id="11452" />
-		<!-- Majestic Circlet - Robe Use -->
+		<!-- Majestic Circlet - Robe -->
 		<production count="1" id="12991" />
 	</item>
 	<item>
-		<!-- Nightmarish Leather Armor -->
+		<!-- Leather Armor of Nightmare -->
 		<ingredient count="1" id="11475" />
 		<!-- Gauntlet of Nightmare - Light Armor Use -->
 		<production count="1" id="11473" />
 	</item>
 	<item>
-		<!-- Nightmarish Leather Armor -->
+		<!-- Leather Armor of Nightmare -->
 		<ingredient count="1" id="11475" />
 		<!-- Boots of Nightmare - Light Armor Use -->
 		<production count="1" id="11478" />
 	</item>
 	<item>
-		<!-- Nightmarish Leather Armor -->
+		<!-- Leather Armor of Nightmare -->
 		<ingredient count="1" id="11475" />
 		<!-- Helm of Nightmare - Light Armor Use -->
 		<production count="1" id="12992" />
@@ -657,37 +657,37 @@
 	<item>
 		<!-- Armor of Nightmare -->
 		<ingredient count="1" id="11471" />
-		<!-- Gauntlet of Nightmare - Heavy Armor Use -->
+		<!-- Gauntlet of Nightmare - Heavy Armor -->
 		<production count="1" id="11472" />
 	</item>
 	<item>
 		<!-- Armor of Nightmare -->
 		<ingredient count="1" id="11471" />
-		<!-- Boots of Nightmare - Heavy Armor Use -->
+		<!-- Boots of Nightmare - Heavy Armor -->
 		<production count="1" id="11477" />
 	</item>
 	<item>
 		<!-- Armor of Nightmare -->
 		<ingredient count="1" id="11471" />
-		<!-- Helm of Nightmare - Heavy Armor Use -->
+		<!-- Helm of Nightmare - Heavy Armor -->
 		<production count="1" id="11481" />
 	</item>
 	<item>
-		<!-- Nightmare Robe -->
+		<!-- Robe of Nightmare -->
 		<ingredient count="1" id="11476" />
-		<!-- Gauntlet of Nightmare - Robe Use -->
+		<!-- Gauntlet of Nightmare - Robe -->
 		<production count="1" id="11474" />
 	</item>
 	<item>
-		<!-- Nightmare Robe -->
+		<!-- Robe of Nightmare -->
 		<ingredient count="1" id="11476" />
-		<!-- Boots of Nightmare - Robe Use -->
+		<!-- Boots of Nightmare - Robe -->
 		<production count="1" id="11479" />
 	</item>
 	<item>
-		<!-- Nightmare Robe -->
+		<!-- Robe of Nightmare -->
 		<ingredient count="1" id="11476" />
-		<!-- Helm of Nightmare - Robe Use -->
+		<!-- Helm of Nightmare - Robe -->
 		<production count="1" id="12993" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/311262519.xml b/L2J_DataPack_BETA/dist/game/data/multisell/311262519.xml
index 731a3562e63257de3137323e5a264eab6ebb6859..731754e3be12561ac427c721725f4a0e71fd7f5f 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/311262519.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/311262519.xml
@@ -1,6 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
-	<!-- Low A-Grade -->
+<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Spiritual Eye -->
 		<ingredient count="1" id="7894" />
@@ -661,8 +660,6 @@
 		<!-- Carnage Bow -->
 		<production count="1" id="288" />
 	</item>
-
-	<!-- Mid A-Grade -->
 	<item>
 		<!-- Flaming Dragon Skull -->
 		<ingredient count="1" id="7895" />
@@ -1323,8 +1320,6 @@
 		<!-- Soul Bow -->
 		<production count="1" id="289" />
 	</item>
-
-	<!-- High A-Grade -->
 	<item>
 		<!-- Cabrio's Hand -->
 		<ingredient count="1" id="8687" />
@@ -1985,4 +1980,4 @@
 		<!-- Shyeed's Bow -->
 		<production count="1" id="8684" />
 	</item>
-</list>
\ No newline at end of file
+</list>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/3122800.xml b/L2J_DataPack_BETA/dist/game/data/multisell/3122800.xml
index d96408f122c6e163b6cf2a42a66114d88f35d078..5fd841fa5d64a2c00e8bc1988d4537706a69fcf6 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/3122800.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/3122800.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Event - Medal -->
 		<ingredient count="5" id="6392" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/3122801.xml b/L2J_DataPack_BETA/dist/game/data/multisell/3122801.xml
index 6cb73f2fafd3e9f00001f4d74dfe1df1e23ed3c3..d9087ef2c63043edaae551a0314173a22597a563 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/3122801.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/3122801.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Event - Medal -->
 		<ingredient count="5" id="6392" />
@@ -39,13 +39,13 @@
 	<item>
 		<!-- Event - Medal -->
 		<ingredient count="25" id="6392" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
 		<!-- Event - Medal -->
 		<ingredient count="83" id="6392" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 </list>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/3122802.xml b/L2J_DataPack_BETA/dist/game/data/multisell/3122802.xml
index fb81972dc576b78e0f6cabc4cbf7a29a7d7b87cc..429504d9434b9a0dd242c126691df4c2288cae64 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/3122802.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/3122802.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Event - Medal -->
 		<ingredient count="5" id="6392" />
@@ -39,37 +39,37 @@
 	<item>
 		<!-- Event - Medal -->
 		<ingredient count="25" id="6392" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
 		<!-- Event - Medal -->
 		<ingredient count="83" id="6392" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
 		<!-- Event - Medal -->
 		<ingredient count="67" id="6392" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
 		<!-- Event - Medal -->
 		<ingredient count="183" id="6392" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
 		<!-- Event - Medal -->
 		<ingredient count="267" id="6392" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
 		<!-- Event - Medal -->
 		<ingredient count="833" id="6392" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 </list>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/3122803.xml b/L2J_DataPack_BETA/dist/game/data/multisell/3122803.xml
index eddb4af7340b2d9060876fd5f4df27b6f79df4ee..537eb9847ec115ad1c86928333c23735bdf2bd2c 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/3122803.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/3122803.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Event - Medal -->
 		<ingredient count="5" id="6392" />
@@ -39,49 +39,49 @@
 	<item>
 		<!-- Event - Medal -->
 		<ingredient count="25" id="6392" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
 		<!-- Event - Medal -->
 		<ingredient count="83" id="6392" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
 		<!-- Event - Medal -->
 		<ingredient count="67" id="6392" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
 		<!-- Event - Medal -->
 		<ingredient count="183" id="6392" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
 		<!-- Event - Medal -->
 		<ingredient count="267" id="6392" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
 		<!-- Event - Medal -->
 		<ingredient count="833" id="6392" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
 		<!-- Event - Medal -->
 		<ingredient count="833" id="6392" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
 		<!-- Event - Medal -->
 		<ingredient count="3000" id="6392" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/3122804.xml b/L2J_DataPack_BETA/dist/game/data/multisell/3122804.xml
index 62f90028dce47fa8f1195a2cf29cdb77b0b682d2..0738b010428ec79d27fcbe88978333e290bf8fd8 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/3122804.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/3122804.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Event - Medal -->
 		<ingredient count="5" id="6392" />
@@ -39,49 +39,49 @@
 	<item>
 		<!-- Event - Medal -->
 		<ingredient count="25" id="6392" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
 		<!-- Event - Medal -->
 		<ingredient count="83" id="6392" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
 		<!-- Event - Medal -->
 		<ingredient count="67" id="6392" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
 		<!-- Event - Medal -->
 		<ingredient count="183" id="6392" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
 		<!-- Event - Medal -->
 		<ingredient count="267" id="6392" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
 		<!-- Event - Medal -->
 		<ingredient count="833" id="6392" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
 		<!-- Event - Medal -->
 		<ingredient count="833" id="6392" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
 		<!-- Event - Medal -->
 		<ingredient count="3000" id="6392" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/313750001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/313750001.xml
index 8bc2046d495cf3f07d0c04f92f3f69bcb4fe6f86..c434dee74234ea3869e3ef56ffa0e4d517338cab 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/313750001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/313750001.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Horn of Buffalo -->
 		<ingredient count="55" id="7186" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/313750002.xml b/L2J_DataPack_BETA/dist/game/data/multisell/313750002.xml
index f86745a4764cd1bf84c282bd5e5fa802e56c3137..95c255c8b72dc98d871fb9e30a4ae28f56022462 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/313750002.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/313750002.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Horn of Buffalo -->
 		<ingredient count="55" id="7186" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/313750003.xml b/L2J_DataPack_BETA/dist/game/data/multisell/313750003.xml
index 3989578d6395e3ed062418ce6d2c777e22b79169..c28704f95b1b96d24a33427a9b4a438a145d6b67 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/313750003.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/313750003.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Horn of Buffalo -->
 		<ingredient count="55" id="7186" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/313820001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/313820001.xml
index b17ead3dca0f01da21b1858208b5f511d56ed6cf..0ecf4bbb16bd6989b8495d02476dd70a0cc27405 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/313820001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/313820001.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Nepenthes Seed -->
 		<ingredient count="55" id="7187" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/313820002.xml b/L2J_DataPack_BETA/dist/game/data/multisell/313820002.xml
index 6c5b4dbc5311bdc7d2f730c440b5893f8fe611e8..d5ae282bd2db9b90c5f4f8e78ab2ed6b0efa6082 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/313820002.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/313820002.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Nepenthes Seed -->
 		<ingredient count="55" id="7187" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/313820003.xml b/L2J_DataPack_BETA/dist/game/data/multisell/313820003.xml
index 867b4389e37c872c30bfeed685d3e058c88ae7bd..822404e2ed7a88ea3577ad8184b73d86e7286ed5 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/313820003.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/313820003.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Nepenthes Seed -->
 		<ingredient count="55" id="7187" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/313880001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/313880001.xml
index fb8b51a8f88e6a37fcc66843fd8260b591306a53..ed1ffb4c3746f558b14dc399b5a89a67f123e48e 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/313880001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/313880001.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Zombie's Liver -->
 		<ingredient count="14" id="7545" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/31522.xml b/L2J_DataPack_BETA/dist/game/data/multisell/31522.xml
index 53e147162bbb5177fcf6bb489f965dddee2b4faf..232a2dd79392e685ea49c3c6fde914a36575c64f 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/31522.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/31522.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Zombie's Brain -->
 		<ingredient count="27" id="7543" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/317325001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/317325001.xml
index 92da90cb217a79f85002a81926806c2aecc80edd..47878e3b061bc880bbb9a806b98da27ab87ea35a 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/317325001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/317325001.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Memento Mori -->
 		<ingredient count="54" id="9814" />
@@ -157,7 +157,7 @@
 		<ingredient count="4" id="9818" />
 		<!-- Adena -->
 		<ingredient count="600000" id="57" />
-		<!-- Transform Sealbook - Golem Guardian -->
+		<!-- Transformation Sealbook: Golem Guardian -->
 		<production count="1" id="9653" />
 	</item>
 	<item>
@@ -173,7 +173,7 @@
 		<ingredient count="4" id="9818" />
 		<!-- Adena -->
 		<ingredient count="600000" id="57" />
-		<!-- Transform Sealbook - Inferno Drake -->
+		<!-- Transformation Sealbook: Inferno Drake -->
 		<production count="1" id="9654" />
 	</item>
 </list>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/317325002.xml b/L2J_DataPack_BETA/dist/game/data/multisell/317325002.xml
index 3a59417e90496dc36a1b0eff085057d3770fa2ab..3607b406af3ec410218b5386ae74814385e8565e 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/317325002.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/317325002.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Destruction Tombstone -->
 		<ingredient count="20" id="8176" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/317325003.xml b/L2J_DataPack_BETA/dist/game/data/multisell/317325003.xml
index 12a5b7bab2e8f53f4f767e6a242d85192f52d881..1481d7a102ec15b68ad7ded20a0973617945fbbd 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/317325003.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/317325003.xml
@@ -1,91 +1,91 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
-		<!-- Memento Mori: C-Grade -->
+		<!-- Memento Mori (C-Grade) -->
 		<ingredient count="1" id="8158" />
 		<!-- Memento Mori -->
 		<production count="2" id="9814" />
 	</item>
 	<item>
-		<!-- Memento Mori: B-Grade -->
+		<!-- Memento Mori (B-Grade) -->
 		<ingredient count="1" id="8159" />
 		<!-- Memento Mori -->
 		<production count="4" id="9814" />
 	</item>
 	<item>
-		<!-- Memento Mori: A-Grade -->
+		<!-- Memento Mori (A-Grade) -->
 		<ingredient count="1" id="8160" />
 		<!-- Memento Mori -->
 		<production count="10" id="9814" />
 	</item>
 	<item>
-		<!-- Dragon Heart: C-Grade -->
+		<!-- Dragon Heart (C-Grade) -->
 		<ingredient count="1" id="8161" />
 		<!-- Dragon Heart -->
 		<production count="2" id="9815" />
 	</item>
 	<item>
-		<!-- Dragon Heart: B-Grade -->
+		<!-- Dragon Heart (B-Grade) -->
 		<ingredient count="1" id="8162" />
 		<!-- Dragon Heart -->
 		<production count="4" id="9815" />
 	</item>
 	<item>
-		<!-- Dragon Heart: A-Grade -->
+		<!-- Dragon Heart (A-Grade) -->
 		<ingredient count="1" id="8163" />
 		<!-- Dragon Heart -->
 		<production count="10" id="9815" />
 	</item>
 	<item>
-		<!-- Earth Egg: C-Grade -->
+		<!-- Earth Egg (C-Grade) -->
 		<ingredient count="1" id="8164" />
 		<!-- Earth Egg -->
 		<production count="2" id="9816" />
 	</item>
 	<item>
-		<!-- Earth Egg: B-Grade -->
+		<!-- Earth Egg (B-Grade) -->
 		<ingredient count="1" id="8165" />
 		<!-- Earth Egg -->
 		<production count="4" id="9816" />
 	</item>
 	<item>
-		<!-- Earth Egg: A-Grade -->
+		<!-- Earth Egg (A-Grade) -->
 		<ingredient count="1" id="8166" />
 		<!-- Earth Egg -->
 		<production count="10" id="9816" />
 	</item>
 	<item>
-		<!-- Nonliving Nucleus: C-Grade -->
+		<!-- Nonliving Nucleus (C-Grade) -->
 		<ingredient count="1" id="8167" />
 		<!-- Nonliving Nucleus -->
 		<production count="2" id="9817" />
 	</item>
 	<item>
-		<!-- Nonliving Nucleus: B-Grade -->
+		<!-- Nonliving Nucleus (B-Grade) -->
 		<ingredient count="1" id="8168" />
 		<!-- Nonliving Nucleus -->
 		<production count="4" id="9817" />
 	</item>
 	<item>
-		<!-- Nonliving Nucleus: A-Grade -->
+		<!-- Nonliving Nucleus (A-Grade) -->
 		<ingredient count="1" id="8169" />
 		<!-- Nonliving Nucleus -->
 		<production count="10" id="9817" />
 	</item>
 	<item>
-		<!-- Angelic Essence: C-Grade -->
+		<!-- Angelic Essence (C-Grade) -->
 		<ingredient count="1" id="8170" />
 		<!-- Angelic Essence -->
 		<production count="2" id="9818" />
 	</item>
 	<item>
-		<!-- Angelic Essence: B-Grade -->
+		<!-- Angelic Essence (B-Grade) -->
 		<ingredient count="1" id="8171" />
 		<!-- Angelic Essence -->
 		<production count="4" id="9818" />
 	</item>
 	<item>
-		<!-- Angelic Essence: A-Grade -->
+		<!-- Angelic Essence (A-Grade) -->
 		<ingredient count="1" id="8172" />
 		<!-- Angelic Essence -->
 		<production count="10" id="9818" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/317606001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/317606001.xml
index 901192b5a5d9737e11f3e873d834634829047d65..9b7a9e19cbe820cb0a11d0a8b4f8bb21390a9cae 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/317606001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/317606001.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Apprentice Adventurer's Weapon Exchange Coupon -->
 		<ingredient count="1" id="7832" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/317606002.xml b/L2J_DataPack_BETA/dist/game/data/multisell/317606002.xml
index 18137db7d33d3e5d2fa22b1a1e73edd1250671f7..c12e14c267572455b0b9d4f9911d5546485abd69 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/317606002.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/317606002.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Apprentice Adventurer's Staff -->
 		<ingredient count="1" id="7816" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/317606003.xml b/L2J_DataPack_BETA/dist/game/data/multisell/317606003.xml
index d6d65a39b0d5783178f61a219f381d160cb3ce75..3bc498f5bd623011e782dabfefdd8da23c7e2eaa 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/317606003.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/317606003.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adventurer's Magic Accessory Exchange Coupon -->
 		<ingredient count="1" id="7833" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/317606004.xml b/L2J_DataPack_BETA/dist/game/data/multisell/317606004.xml
index 2b94e897e679fa558bca9feab5132381ef44dd04..ad37b4d63e5cea2607fe6afed2d1e580ac705af0 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/317606004.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/317606004.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Traveler's Mace -->
 		<ingredient count="1" id="7822" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/317885009.xml b/L2J_DataPack_BETA/dist/game/data/multisell/317885009.xml
index 6ac567621b96e98cba1a3a0dd946bb6d72de217e..b3e27f88022337bb0178be00a6573ad83f80fd0a 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/317885009.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/317885009.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Memento Mori -->
 		<ingredient count="204" id="9814" />
@@ -73,7 +73,7 @@
 		<ingredient count="864" id="9817" />
 		<!-- Angelic Essence -->
 		<ingredient count="744" id="9818" />
-		<!-- Demon Dagger -->
+		<!-- Demon's Dagger -->
 		<production count="1" id="234" />
 	</item>
 	<item>
@@ -89,7 +89,7 @@
 		<ingredient count="4" id="9818" />
 		<!-- Adena -->
 		<ingredient count="600000" id="57" />
-		<!-- Transform Sealbook - Grail Apostle -->
+		<!-- Transformation Sealbook: Grail Apostle -->
 		<production count="1" id="9650" />
 	</item>
 </list>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/317925010.xml b/L2J_DataPack_BETA/dist/game/data/multisell/317925010.xml
index 0b0d5e9fd65b818106e1fd293db633ff7b68056b..291e0f6b9b9ff4569eefa6c0c514bd8ca0b2aea9 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/317925010.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/317925010.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Memento Mori -->
 		<ingredient count="204" id="9814" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/317975011.xml b/L2J_DataPack_BETA/dist/game/data/multisell/317975011.xml
index 662d154174e914d05d352369b08d8160a663a283..0b767096dea2801893f1c17bb745b0b3b33c50ae 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/317975011.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/317975011.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Memento Mori -->
 		<ingredient count="20" id="9814" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/318055002.xml b/L2J_DataPack_BETA/dist/game/data/multisell/318055002.xml
index 926cdf7e6d2a51f5d6b757635e20d74945d61b5b..1a00079eb93332eb29b7125199d33c538b1f254f 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/318055002.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/318055002.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Memento Mori -->
 		<ingredient count="204" id="9814" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/318145003.xml b/L2J_DataPack_BETA/dist/game/data/multisell/318145003.xml
index f0a26d443827e66103243b3ed8649fa15c1eb61d..495854b18178a1f3b439d05ba22fd8af171c9d25 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/318145003.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/318145003.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Memento Mori -->
 		<ingredient count="26" id="9814" />
@@ -147,7 +147,7 @@
 		<ingredient count="4" id="9818" />
 		<!-- Adena -->
 		<ingredient count="600000" id="57" />
-		<!-- Transform Sealbook - Unicorn -->
+		<!-- Transformation Sealbook: Unicorn -->
 		<production count="1" id="9651" />
 	</item>
 	<item>
@@ -163,7 +163,7 @@
 		<ingredient count="4" id="9818" />
 		<!-- Adena -->
 		<ingredient count="600000" id="57" />
-		<!-- Transform Sealbook - Lilim Knight -->
+		<!-- Transformation Sealbook: Lilim Knight -->
 		<production count="1" id="9652" />
 	</item>
 </list>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/318195007.xml b/L2J_DataPack_BETA/dist/game/data/multisell/318195007.xml
index 691a8bc931daf82e4e57058ea1ccb3d5b2691a2d..85b15f6ae53a9b778a40920b282bb0aaee83cee7 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/318195007.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/318195007.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Memento Mori -->
 		<ingredient count="204" id="9814" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/318235006.xml b/L2J_DataPack_BETA/dist/game/data/multisell/318235006.xml
index d5f3da95647e97aedfd3319f3ce8a02c67730add..9d334ae6c5ce91597b12d2faf5c4a88ffa52e869 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/318235006.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/318235006.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Memento Mori -->
 		<ingredient count="204" id="9814" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/318275004.xml b/L2J_DataPack_BETA/dist/game/data/multisell/318275004.xml
index e88b0995132e5f95cdd6ca5257c7687915658b20..c0b4cce9867ddde69b62de1a482f2f580631de97 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/318275004.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/318275004.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Memento Mori -->
 		<ingredient count="204" id="9814" />
@@ -133,7 +133,7 @@
 		<ingredient count="14" id="9816" />
 		<!-- Angelic Essence -->
 		<ingredient count="2" id="9818" />
-		<!-- Mithril Boots -->
+		<!-- Reinforced Mithril Boots -->
 		<production count="1" id="62" />
 	</item>
 	<item>
@@ -229,7 +229,7 @@
 		<ingredient count="4" id="9818" />
 		<!-- Adena -->
 		<ingredient count="600000" id="57" />
-		<!-- Transform Sealbook - Dragon Bomber -->
+		<!-- Transformation Sealbook: Dragon Bomber -->
 		<production count="1" id="9655" />
 	</item>
 </list>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/318335008.xml b/L2J_DataPack_BETA/dist/game/data/multisell/318335008.xml
index 4737c492536f051f168d1d3817ca683d387597e4..ec4f98c4713c192a1c22e9d7c9ffa29c40d9d87e 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/318335008.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/318335008.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Memento Mori -->
 		<ingredient count="40" id="9814" />
@@ -17,7 +17,7 @@
 		<ingredient count="28" id="9816" />
 		<!-- Angelic Essence -->
 		<ingredient count="4" id="9818" />
-		<!-- Tempered Mithril Gaiters -->
+		<!-- Reinforced Mithril Gaiters -->
 		<production count="1" id="2387" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/318375005.xml b/L2J_DataPack_BETA/dist/game/data/multisell/318375005.xml
index c1f0c54f387d1e5e77b69b50573e193fca3d0be1..966bb291e91c1d6cfb1a7856ea3ba59a18a709de 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/318375005.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/318375005.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Memento Mori -->
 		<ingredient count="204" id="9814" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/319463001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/319463001.xml
index 342acbde0460046f69a703c8a44345d8b87942a4..eaa8eee8e713e66204bade0afedfb9404d99aa46 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/319463001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/319463001.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list applyTaxes="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list applyTaxes="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="87600" id="57" />
@@ -72,4 +72,4 @@
 		<!-- Shadow Item: Knuckle Duster -->
 		<production count="1" id="8838" />
 	</item>
-</list>
\ No newline at end of file
+</list>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/319463002.xml b/L2J_DataPack_BETA/dist/game/data/multisell/319463002.xml
index 3769a4c500d81863c19c050942eb7cd8de3602d8..74bee4cbfc6052fbd34309441ae6a7e52c7eec5d 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/319463002.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/319463002.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list applyTaxes="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list applyTaxes="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="87600" id="57" />
@@ -160,4 +160,4 @@
 		<!-- Shadow Item: Stormbringer -->
 		<production count="1" id="8848" />
 	</item>
-</list>
\ No newline at end of file
+</list>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/319463003.xml b/L2J_DataPack_BETA/dist/game/data/multisell/319463003.xml
index f6c6c3018da89ce12e3e672d37a8bd4295148a90..f686a1bf090563451525acb73a0d57b22bb9ec0d 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/319463003.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/319463003.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list applyTaxes="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list applyTaxes="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="87600" id="57" />
@@ -229,7 +229,7 @@
 		<ingredient count="93500" id="57" />
 		<!-- Adena -->
 		<ingredient count="93500" id="57" isTaxIngredient="true" />
-		<!-- Shadow Item: Swords of Delusion -->
+		<!-- Shadow Item: Sword of Delusion*Sword of Delusion -->
 		<production count="1" id="8857" />
 	</item>
 	<item>
@@ -240,4 +240,4 @@
 		<!-- Shadow Item: Great Axe -->
 		<production count="1" id="8858" />
 	</item>
-</list>
\ No newline at end of file
+</list>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/320540001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/320540001.xml
index cb225855fd4662878fcf5391afd99986c22d17aa..4fe26d154a2949e29e432f9b32c6004ab7e160c7 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/320540001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/320540001.xml
@@ -1,9 +1,9 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Remnants of Old Dwarves' Dreams -->
 		<ingredient count="9" id="8514" />
-		<!-- Compressed Package of Soulshots: D-grade -->
+		<!-- Compressed Package of Soulshots (D-Grade) -->
 		<production count="1" id="5135" />
 		<!-- Haste Potion -->
 		<production count="1" id="734" />
@@ -11,21 +11,21 @@
 	<item>
 		<!-- Remnants of Old Dwarves' Dreams -->
 		<ingredient count="15" id="8514" />
-		<!-- Compressed Package of Spiritshots: D-grade -->
+		<!-- Compressed Package of Spiritshots (D-Grade) -->
 		<production count="1" id="5141" />
 	</item>
 	<item>
 		<!-- Remnants of Old Dwarves' Dreams -->
 		<ingredient count="38" id="8514" />
-		<!-- Compressed Package of Blessed Spiritshots: D-grade -->
+		<!-- Compressed Package of Blessed Spiritshots (D-Grade) -->
 		<production count="1" id="5147" />
-		<!-- Healing Potion -->
+		<!-- Greater Healing Potion -->
 		<production count="1" id="1061" />
 	</item>
 	<item>
 		<!-- Remnants of Old Dwarves' Dreams -->
 		<ingredient count="1" id="8514" />
-		<!-- Healing Potion -->
+		<!-- Greater Healing Potion -->
 		<production count="1" id="1061" />
 	</item>
 	<item>
@@ -39,7 +39,7 @@
 	<item>
 		<!-- Remnants of Old Dwarves' Dreams -->
 		<ingredient count="6" id="8514" />
-		<!-- Potion of Alacrity -->
+		<!-- Alacrity Potion -->
 		<production count="1" id="735" />
 		<!-- Lesser Healing Potion -->
 		<production count="1" id="1060" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/320825001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/320825001.xml
index 686cc8f799dd4e12a74730ef62f17827e7066df0..1ed38132350bf416982119d1c96bddb1a46eba42 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/320825001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/320825001.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Memento Mori -->
 		<ingredient count="3660" id="9814" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/320825002.xml b/L2J_DataPack_BETA/dist/game/data/multisell/320825002.xml
index b910aac0292507df3308725a359600b57e2cc99a..ff8b579434e544c71ecca2f3cec2848aa7d0ddee 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/320825002.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/320825002.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Memento Mori -->
 		<ingredient count="740" id="9814" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/322980001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/322980001.xml
index 527bcb4de96fa0c93392fa79e6331d8b91162db3..789ef0df8054d6f748490b496d9c4b16e074072a 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/322980001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/322980001.xml
@@ -1,8 +1,9 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!-- Hude 1 -->
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
+		<!-- Adena -->
 		<ingredient count="25000" id="57" />
+		<!-- Caravaner's Remedy -->
 		<production count="1" id="9702" />
 	</item>
 </list>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/322980002.xml b/L2J_DataPack_BETA/dist/game/data/multisell/322980002.xml
index a41c21c0eaae750ed48f39a805356ad2ee4c77df..1b870df33fb958fc5c441a0dc79e50126f346242 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/322980002.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/322980002.xml
@@ -1,6 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<!-- Hude S80 Rec and Parts -->
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Hidden First Page -->
 		<ingredient count="68" id="9600" />
@@ -388,7 +387,7 @@
 		<ingredient count="30" id="9601" />
 		<!-- Demon Contract Fragment -->
 		<ingredient count="4" id="9602" />
-		<!-- Battleground Spell - Wizard -->
+		<!-- Sealed Dynasty Sigil Piece -->
 		<production count="1" id="10114" />
 	</item>
 	<item>
@@ -608,7 +607,7 @@
 		<ingredient count="220" id="9601" />
 		<!-- Demon Contract Fragment -->
 		<ingredient count="21" id="9602" />
-		<!-- Recipe - Sealed Dynasty Necklace (70%) -->
+		<!-- Recipe: Sealed Dynasty Boots (60%) -->
 		<production count="1" id="9486" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/32323001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/32323001.xml
index 656a7b2d9d64c8dbb866632d6a100ea75d0fea77..d8729d4c246cb3802219bd260e73fe6ba99454cc 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/32323001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/32323001.xml
@@ -1,9 +1,9 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="500000" id="57" />
-		<!-- Transform Sealbook - Onyx Beast -->
+		<!-- Transformation Sealbook: Onyx Beast -->
 		<production count="1" id="9648" />
 	</item>
 </list>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/32326001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/32326001.xml
index 16b4bb840346999502dd0247cf07f0ab9eb8f48e..9d9a3011af37e12f8c9215fcf66da43b57d7a07f 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/32326001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/32326001.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="30000" id="57" />
@@ -33,7 +33,7 @@
 	<item>
 		<!-- Adena -->
 		<ingredient count="30000" id="57" />
-		<!-- Divine Potion -->
+		<!-- Holy Potion -->
 		<production count="1" id="10002" />
 	</item>
 </list>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/32326002.xml b/L2J_DataPack_BETA/dist/game/data/multisell/32326002.xml
index d37437515eb8df8995bc55ffc0097522ccf4f0bb..7f433bad8f0d3cbd160a8fd9f8bdcf8574dbc7d4 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/32326002.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/32326002.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Water Stone -->
 		<ingredient count="1" id="9547" />
@@ -27,11 +27,11 @@
 	<item>
 		<!-- Dark Stone -->
 		<ingredient count="1" id="9550" />
-		<!-- Divine Stone -->
+		<!-- Holy Stone -->
 		<production count="1" id="9551" />
 	</item>
 	<item>
-		<!-- Divine Stone -->
+		<!-- Holy Stone -->
 		<ingredient count="1" id="9551" />
 		<!-- Dark Stone -->
 		<production count="1" id="9550" />
@@ -39,6 +39,7 @@
 	<item>
 		<!-- Fire Stone -->
 		<ingredient count="5" id="9546" />
+		<!-- Adena -->
 		<ingredient count="3000000" id="57" />
 		<!-- Fire Crystal -->
 		<production count="1" id="9552" />
@@ -46,6 +47,7 @@
 	<item>
 		<!-- Water Stone -->
 		<ingredient count="5" id="9547" />
+		<!-- Adena -->
 		<ingredient count="3000000" id="57" />
 		<!-- Water Crystal -->
 		<production count="1" id="9553" />
@@ -53,6 +55,7 @@
 	<item>
 		<!-- Earth Stone -->
 		<ingredient count="5" id="9548" />
+		<!-- Adena -->
 		<ingredient count="3000000" id="57" />
 		<!-- Earth Crystal -->
 		<production count="1" id="9554" />
@@ -60,20 +63,23 @@
 	<item>
 		<!-- Wind Stone -->
 		<ingredient count="5" id="9549" />
+		<!-- Adena -->
 		<ingredient count="3000000" id="57" />
 		<!-- Wind Crystal -->
 		<production count="1" id="9555" />
 	</item>
 	<item>
-		<!-- Divine Stone -->
+		<!-- Holy Stone -->
 		<ingredient count="5" id="9551" />
+		<!-- Adena -->
 		<ingredient count="3000000" id="57" />
-		<!-- Divine Crystal -->
+		<!-- Holy Crystal -->
 		<production count="1" id="9557" />
 	</item>
 	<item>
 		<!-- Dark Stone -->
 		<ingredient count="5" id="9550" />
+		<!-- Adena -->
 		<ingredient count="3000000" id="57" />
 		<!-- Dark Crystal -->
 		<production count="1" id="9556" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/323470001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/323470001.xml
index 06c4ff39779907dbd6b2479a3828c241ed73f069..65870daa8007472d98aa60f7c093069c32f87754 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/323470001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/323470001.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Cursed Red Soul Crystal - Stage 14 -->
 		<ingredient count="1" id="10160" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/323470002.xml b/L2J_DataPack_BETA/dist/game/data/multisell/323470002.xml
index ab3b1c668adae2aa848ae2b63e3c3ed31ad92c79..287f60be24e90cfa9617d3707bfc228de7c49e6a 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/323470002.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/323470002.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Ancient Tome of the Demon -->
 		<ingredient count="432" id="9599" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/323470003.xml b/L2J_DataPack_BETA/dist/game/data/multisell/323470003.xml
index 108ed7062f9fd9421bdcf88e821a85e4b4c5b6a5..ffa5780d4f7b7ee024ba5b8014559925e2fdecf8 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/323470003.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/323470003.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Dynasty Breast Plate -->
 		<ingredient count="1" id="9416" />
@@ -117,7 +117,7 @@
 		<ingredient count="1" id="9425" />
 		<!-- Dynastic Essence II -->
 		<ingredient count="1" id="10413" />
-		<!-- Dynasty Jewel Leather Mail - Dagger Master -->
+		<!-- Dynasty Jewel Leather Armor - Dagger Master -->
 		<production count="1" id="10233" />
 	</item>
 	<item>
@@ -125,7 +125,7 @@
 		<ingredient count="1" id="9425" />
 		<!-- Dynastic Essence II -->
 		<ingredient count="1" id="10413" />
-		<!-- Dynasty Jewel Leather Mail - Bow Master -->
+		<!-- Dynasty Jewel Leather Armor - Bow Master -->
 		<production count="1" id="10234" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/323470004.xml b/L2J_DataPack_BETA/dist/game/data/multisell/323470004.xml
index b7db6d22e4ab6f8428872cc9686d59504df2c69a..9b29805b2ae79eb7d68a6aca277857e0ac3322b7 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/323470004.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/323470004.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Dynasty Breast Plate - Shield Master -->
 		<ingredient count="1" id="9417" />
@@ -85,13 +85,13 @@
 		<production count="1" id="9425" />
 	</item>
 	<item>
-		<!-- Dynasty Jewel Leather Mail - Dagger Master -->
+		<!-- Dynasty Jewel Leather Armor - Dagger Master -->
 		<ingredient count="1" id="10233" />
 		<!-- Dynasty Leather Armor -->
 		<production count="1" id="9425" />
 	</item>
 	<item>
-		<!-- Dynasty Jewel Leather Mail - Bow Master -->
+		<!-- Dynasty Jewel Leather Armor - Bow Master -->
 		<ingredient count="1" id="10234" />
 		<!-- Dynasty Leather Armor -->
 		<production count="1" id="9425" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/323780001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/323780001.xml
index c248f9522b88c8360fb9d1a4a0fd4fcf72a5c586..7e17ac38c1cc81f43e104023aecbc261f51ca8fe 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/323780001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/323780001.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Fantasy Isle Coin -->
 		<ingredient count="5263" id="13067" />
@@ -93,121 +93,121 @@
 	<item>
 		<!-- Fantasy Isle Coin -->
 		<ingredient count="64" id="13067" />
-		<!-- Escape - Talking Island Village -->
+		<!-- Scroll of Escape: Talking Island Village -->
 		<production count="1" id="13395" />
 	</item>
 	<item>
 		<!-- Fantasy Isle Coin -->
 		<ingredient count="64" id="13067" />
-		<!-- Escape - Elven Village -->
+		<!-- Scroll of Escape: Elven Village -->
 		<production count="1" id="13396" />
 	</item>
 	<item>
 		<!-- Fantasy Isle Coin -->
 		<ingredient count="64" id="13067" />
-		<!-- Escape - Dark Elven Village -->
+		<!-- Scroll of Escape: Dark Elven Village -->
 		<production count="1" id="13397" />
 	</item>
 	<item>
 		<!-- Fantasy Isle Coin -->
 		<ingredient count="64" id="13067" />
-		<!-- Escape - Orc Village -->
+		<!-- Scroll of Escape: Orc Village -->
 		<production count="1" id="13398" />
 	</item>
 	<item>
 		<!-- Fantasy Isle Coin -->
 		<ingredient count="64" id="13067" />
-		<!-- Escape - Dwarven Village -->
+		<!-- Scroll of Escape: Dwarven Village -->
 		<production count="1" id="13399" />
 	</item>
 	<item>
 		<!-- Fantasy Isle Coin -->
 		<ingredient count="64" id="13067" />
-		<!-- Escape - Gludin Village -->
+		<!-- Scroll of Escape: Gludin Village -->
 		<production count="1" id="13400" />
 	</item>
 	<item>
 		<!-- Fantasy Isle Coin -->
 		<ingredient count="64" id="13067" />
-		<!-- Escape - Town of Gludio -->
+		<!-- Scroll of Escape: Town of Gludio -->
 		<production count="1" id="13401" />
 	</item>
 	<item>
 		<!-- Fantasy Isle Coin -->
 		<ingredient count="64" id="13067" />
-		<!-- Escape - Town of Dion -->
+		<!-- Scroll of Escape: Town of Dion -->
 		<production count="1" id="13402" />
 	</item>
 	<item>
 		<!-- Fantasy Isle Coin -->
 		<ingredient count="64" id="13067" />
-		<!-- Escape - Floran Village -->
+		<!-- Scroll of Escape: Floran Village -->
 		<production count="1" id="13403" />
 	</item>
 	<item>
 		<!-- Fantasy Isle Coin -->
 		<ingredient count="64" id="13067" />
-		<!-- Escape - Giran Castle Town -->
+		<!-- Scroll of Escape: Town of Giran -->
 		<production count="1" id="13404" />
 	</item>
 	<item>
 		<!-- Fantasy Isle Coin -->
 		<ingredient count="64" id="13067" />
-		<!-- Escape - Hardin's Academy -->
+		<!-- Scroll of Escape: Hardin's Academy -->
 		<production count="1" id="13405" />
 	</item>
 	<item>
 		<!-- Fantasy Isle Coin -->
 		<ingredient count="64" id="13067" />
-		<!-- Escape - Heine -->
+		<!-- Scroll of Escape: Heine -->
 		<production count="1" id="13406" />
 	</item>
 	<item>
 		<!-- Fantasy Isle Coin -->
 		<ingredient count="64" id="13067" />
-		<!-- Escape - Town of Oren -->
+		<!-- Scroll of Escape: Town of Oren -->
 		<production count="1" id="13407" />
 	</item>
 	<item>
 		<!-- Fantasy Isle Coin -->
 		<ingredient count="64" id="13067" />
-		<!-- Escape - Ivory Tower -->
+		<!-- Scroll of Escape: Ivory Tower -->
 		<production count="1" id="13408" />
 	</item>
 	<item>
 		<!-- Fantasy Isle Coin -->
 		<ingredient count="64" id="13067" />
-		<!-- Escape - Hunters Village -->
+		<!-- Scroll of Escape: Hunters Village -->
 		<production count="1" id="13409" />
 	</item>
 	<item>
 		<!-- Fantasy Isle Coin -->
 		<ingredient count="64" id="13067" />
-		<!-- Escape - Town of Aden -->
+		<!-- Scroll of Escape: Town of Aden -->
 		<production count="1" id="13410" />
 	</item>
 	<item>
 		<!-- Fantasy Isle Coin -->
 		<ingredient count="64" id="13067" />
-		<!-- Escape - Town of Goddard -->
+		<!-- Scroll of Escape: Town of Goddard -->
 		<production count="1" id="13411" />
 	</item>
 	<item>
 		<!-- Fantasy Isle Coin -->
 		<ingredient count="64" id="13067" />
-		<!-- Escape - Rune Township -->
+		<!-- Scroll of Escape: Rune Township -->
 		<production count="1" id="13412" />
 	</item>
 	<item>
 		<!-- Fantasy Isle Coin -->
 		<ingredient count="64" id="13067" />
-		<!-- Escape - Town of Schuttgart -->
+		<!-- Scroll of Escape: Town of Schuttgart -->
 		<production count="1" id="13413" />
 	</item>
 	<item>
 		<!-- Fantasy Isle Coin -->
 		<ingredient count="64" id="13067" />
-		<!-- Escape - Kamael Village -->
+		<!-- Scroll of Escape: Kamael Village -->
 		<production count="1" id="13414" />
 	</item>
 </list>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/324840001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/324840001.xml
index 8694f95732d32cc00d3438577f1f5af6a7eb55bd..0608bc73f60162714cabcef1947341443459450c 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/324840001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/324840001.xml
@@ -1,51 +1,51 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Essence of Kamaloka -->
 		<ingredient count="10" id="13002" />
-		<!-- Pathfinder's Reward - D-Grade -->
+		<!-- Pathfinder's Reward (D-Grade) -->
 		<production count="1" id="13003" />
 	</item>
 	<item>
 		<!-- Essence of Kamaloka -->
 		<ingredient count="20" id="13002" />
-		<!-- Pathfinder's Reward - C-Grade -->
+		<!-- Pathfinder's Reward (C-Grade) -->
 		<production count="1" id="13004" />
 	</item>
 	<item>
 		<!-- Essence of Kamaloka -->
 		<ingredient count="50" id="13002" />
-		<!-- Pathfinder's Reward - B-Grade -->
+		<!-- Pathfinder's Reward (B-Grade) -->
 		<production count="1" id="13005" />
 	</item>
 	<item>
 		<!-- Essence of Kamaloka -->
 		<ingredient count="100" id="13002" />
-		<!-- Pathfinder's Reward - A-Grade -->
+		<!-- Pathfinder's Reward (A-Grade) -->
 		<production count="1" id="13006" />
 	</item>
 	<item>
 		<!-- Essence of Kamaloka -->
 		<ingredient count="200" id="13002" />
-		<!-- Pathfinder's Reward - S-Grade -->
+		<!-- Pathfinder's Reward (S-Grade) -->
 		<production count="1" id="13007" />
 	</item>
 	<item>
 		<!-- Essence of Kamaloka -->
 		<ingredient count="300" id="13002" />
-		<!-- Pathfinder's Reward - AU Karm -->
+		<!-- Pathfinder's Reward - Bronze Kamaloka Circlet -->
 		<production count="1" id="13270" />
 	</item>
 	<item>
 		<!-- Essence of Kamaloka -->
 		<ingredient count="300" id="13002" />
-		<!-- Pathfinder's Reward - AR Karm -->
+		<!-- Pathfinder's Reward - Silver Kamaloka Circlet -->
 		<production count="1" id="13271" />
 	</item>
 	<item>
 		<!-- Essence of Kamaloka -->
 		<ingredient count="300" id="13002" />
-		<!-- Pathfinder's Reward - AE Karm -->
+		<!-- Pathfinder's Reward - Gold Kamaloka Circlet -->
 		<production count="1" id="13272" />
 	</item>
 </list>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/325460001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/325460001.xml
index ea86f599b827b62f42c4ad6b03a8341cda4bcd58..6e99ef519d9e9e700a43f9cac5ecc9c7701d5721 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/325460001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/325460001.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Tear of a Freed Soul -->
 		<ingredient count="5" id="13797" />
@@ -21,7 +21,7 @@
 	<item>
 		<!-- Tear of a Freed Soul -->
 		<ingredient count="15" id="13797" />
-		<!-- Strong Alkali Type Ointment -->
+		<!-- Strong Alkaline Ointment -->
 		<production count="1" id="13771" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/325500001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/325500001.xml
index a91c3b57561665ce0c51116b0996e37385f1b200..fe8fb2853b44cfb4663c1ddc1725107a9c06d5cd 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/325500001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/325500001.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Freed Soul -->
 		<ingredient count="136" id="13796" />
@@ -419,7 +419,7 @@
 		<ingredient count="6" id="15486" />
 		<!-- Dragonkin Charm -->
 		<ingredient count="3" id="13841" />
-		<!-- Ancient Book - Divine Inspiration (Original Language Version) -->
+		<!-- Ancient Book: Divine Inspiration (Original Language Version) -->
 		<production count="1" id="8619" />
 	</item>
 	<item>
@@ -429,7 +429,7 @@
 		<ingredient count="6" id="15486" />
 		<!-- Dragonkin Charm -->
 		<ingredient count="3" id="13841" />
-		<!-- Ancient Book - Divine Inspiration (Manuscript) -->
+		<!-- Ancient Book: Divine Inspiration (Manuscript) -->
 		<production count="1" id="8620" />
 	</item>
 </list>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/326100001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/326100001.xml
index 3896431e1e4d111d0c54b491ea6f390be88b6c29..95618cab54e487ad5de12b4364caf89a1e476d63 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/326100001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/326100001.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Cloth Belt -->
 		<ingredient count="1" id="13894" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/326100002.xml b/L2J_DataPack_BETA/dist/game/data/multisell/326100002.xml
index d92f0247544db50cdff6673195a456f105c08c11..94eb59071b7c3694145858e47e81c126548a2fce 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/326100002.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/326100002.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Sealed Holy Spirit's Cloak -->
 		<ingredient count="1" id="13893" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/326110001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/326110001.xml
index 66aab84a8843556f8bbdb24685c4570658800ef5..d234a183306c0a649148ff2fffd1cbf09dff669f 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/326110001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/326110001.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="300000" id="57" />
@@ -17,7 +17,7 @@
 		<ingredient count="90" id="14009" />
 		<!-- Adena -->
 		<ingredient count="400000" id="57" />
-		<!-- Design - Energy Star Stone -->
+		<!-- Design: Energy Star Stone -->
 		<production count="1" id="13726" />
 	</item>
 	<item>
@@ -25,7 +25,7 @@
 		<ingredient count="90" id="14009" />
 		<!-- Adena -->
 		<ingredient count="400000" id="57" />
-		<!-- Design - High Quality Energy Star Stone -->
+		<!-- Design: Greater Quality Energy Star Stone -->
 		<production count="1" id="13727" />
 	</item>
 	<item>
@@ -33,7 +33,7 @@
 		<ingredient count="90" id="14011" />
 		<!-- Adena -->
 		<ingredient count="400000" id="57" />
-		<!-- Design - Stone of Stamina -->
+		<!-- Design: Stone of Stamina -->
 		<production count="1" id="14028" />
 	</item>
 	<item>
@@ -41,7 +41,7 @@
 		<ingredient count="90" id="14010" />
 		<!-- Adena -->
 		<ingredient count="400000" id="57" />
-		<!-- Design - Stone of Mana -->
+		<!-- Design: Stone of Mana -->
 		<production count="1" id="14029" />
 	</item>
 	<item>
@@ -49,7 +49,7 @@
 		<ingredient count="90" id="14010" />
 		<!-- Adena -->
 		<ingredient count="400000" id="57" />
-		<!-- Design - Stone of Recovery -->
+		<!-- Design: Stone of Recovery -->
 		<production count="1" id="14030" />
 	</item>
 	<item>
@@ -57,7 +57,7 @@
 		<ingredient count="90" id="14010" />
 		<!-- Adena -->
 		<ingredient count="400000" id="57" />
-		<!-- Design - Stone of Destruction -->
+		<!-- Design: Stone of Destruction -->
 		<production count="1" id="14031" />
 	</item>
 	<item>
@@ -65,7 +65,7 @@
 		<ingredient count="90" id="14010" />
 		<!-- Adena -->
 		<ingredient count="400000" id="57" />
-		<!-- Design - Stone of Invincibility -->
+		<!-- Design: Stone of Invincibility -->
 		<production count="1" id="14032" />
 	</item>
 	<item>
@@ -73,7 +73,7 @@
 		<ingredient count="90" id="14010" />
 		<!-- Adena -->
 		<ingredient count="400000" id="57" />
-		<!-- Design - Stone of Great Speed -->
+		<!-- Design: Stone of Great Speed -->
 		<production count="1" id="14033" />
 	</item>
 	<item>
@@ -81,7 +81,7 @@
 		<ingredient count="90" id="14011" />
 		<!-- Adena -->
 		<ingredient count="400000" id="57" />
-		<!-- Design - Stone of Speed -->
+		<!-- Design: Stone of Speed -->
 		<production count="1" id="14034" />
 	</item>
 	<item>
@@ -89,7 +89,7 @@
 		<ingredient count="90" id="14011" />
 		<!-- Adena -->
 		<ingredient count="400000" id="57" />
-		<!-- Design - Stone of Concentration -->
+		<!-- Design: Stone of Concentration -->
 		<production count="1" id="14035" />
 	</item>
 	<item>
@@ -97,7 +97,7 @@
 		<ingredient count="90" id="14011" />
 		<!-- Adena -->
 		<ingredient count="400000" id="57" />
-		<!-- Design - Stone of Ease -->
+		<!-- Design: Stone of Ease -->
 		<production count="1" id="14036" />
 	</item>
 	<item>
@@ -105,7 +105,7 @@
 		<ingredient count="90" id="14009" />
 		<!-- Adena -->
 		<ingredient count="400000" id="57" />
-		<!-- Design - Stone of Abundance -->
+		<!-- Design: Stone of Abundance -->
 		<production count="1" id="14037" />
 	</item>
 	<item>
@@ -121,7 +121,7 @@
 		<ingredient count="200" id="14009" />
 		<!-- Adena -->
 		<ingredient count="600000" id="57" />
-		<!-- Design - Crystal of Fire -->
+		<!-- Design: Fire Crystal -->
 		<production count="1" id="13993" />
 	</item>
 	<item>
@@ -129,7 +129,7 @@
 		<ingredient count="200" id="14009" />
 		<!-- Adena -->
 		<ingredient count="600000" id="57" />
-		<!-- Design - Crystal of Water -->
+		<!-- Design: Water Crystal -->
 		<production count="1" id="13994" />
 	</item>
 	<item>
@@ -137,7 +137,7 @@
 		<ingredient count="200" id="14009" />
 		<!-- Adena -->
 		<ingredient count="600000" id="57" />
-		<!-- Design - Crystal of Wind -->
+		<!-- Design: Wind Crystal -->
 		<production count="1" id="13995" />
 	</item>
 	<item>
@@ -145,7 +145,7 @@
 		<ingredient count="200" id="14009" />
 		<!-- Adena -->
 		<ingredient count="600000" id="57" />
-		<!-- Design - Crystal of Earth -->
+		<!-- Design: Earth Crystal -->
 		<production count="1" id="13996" />
 	</item>
 	<item>
@@ -153,7 +153,7 @@
 		<ingredient count="200" id="14009" />
 		<!-- Adena -->
 		<ingredient count="600000" id="57" />
-		<!-- Design - Crystal of Darkness -->
+		<!-- Design: Dark Crystal -->
 		<production count="1" id="13997" />
 	</item>
 	<item>
@@ -161,7 +161,7 @@
 		<ingredient count="200" id="14009" />
 		<!-- Adena -->
 		<ingredient count="600000" id="57" />
-		<!-- Design - Crystal of Sacred -->
+		<!-- Design: Holy Crystal -->
 		<production count="1" id="13998" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/326150001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/326150001.xml
index d1c3cfaf629e697a69d5789d77faf89f9d7b4c9a..83fbf93fc7b583bfbe3539fdb6b7c53915f60b3b 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/326150001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/326150001.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Vesper Cutter -->
 		<ingredient count="1" id="13457" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/326150002.xml b/L2J_DataPack_BETA/dist/game/data/multisell/326150002.xml
index 9c55720be0f2bbd0fd9dca96f171b5458f373d0a..3cb7d5629aa8153a3fb1aff193848d59ad13651e 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/326150002.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/326150002.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Dynasty Sword -->
 		<ingredient count="1" id="9442" />
@@ -1921,33 +1921,33 @@
 		<production count="1" id="14151" />
 	</item>
 	<item>
-		<!-- Vesper Sheutjeh -->
+		<!-- Vesper Shooter -->
 		<ingredient count="1" id="13469" />
 		<!-- Blue Soul Crystal - Stage 16 -->
 		<ingredient count="1" id="13072" />
 		<!-- Gemstone S -->
 		<ingredient count="623" id="2134" />
-		<!-- Vesper Sheutjeh - Focus -->
+		<!-- Vesper Shooter - Focus -->
 		<production count="1" id="14155" />
 	</item>
 	<item>
-		<!-- Vesper Sheutjeh -->
+		<!-- Vesper Shooter -->
 		<ingredient count="1" id="13469" />
 		<!-- Green Soul Crystal - Stage 16 -->
 		<ingredient count="1" id="13073" />
 		<!-- Gemstone S -->
 		<ingredient count="623" id="2134" />
-		<!-- Vesper Sheutjeh - Critical Slow -->
+		<!-- Vesper Shooter - Critical Slow -->
 		<production count="1" id="14156" />
 	</item>
 	<item>
-		<!-- Vesper Sheutjeh -->
+		<!-- Vesper Shooter -->
 		<ingredient count="1" id="13469" />
 		<!-- Red Soul Crystal - Stage 16 -->
 		<ingredient count="1" id="13071" />
 		<!-- Gemstone S -->
 		<ingredient count="623" id="2134" />
-		<!-- Vesper Sheutjeh - Cheap Shot -->
+		<!-- Vesper Shooter - Cheap Shot -->
 		<production count="1" id="14154" />
 	</item>
 	<item>
@@ -2057,7 +2057,7 @@
 		<ingredient count="1" id="13073" />
 		<!-- Gemstone S -->
 		<ingredient count="623" id="2134" />
-		<!-- Vesper Fighter - Gale - Crt. Stun -->
+		<!-- Vesper Fighter - Gale - Critical Stun -->
 		<production count="1" id="16070" />
 	</item>
 	<item>
@@ -2127,7 +2127,7 @@
 		<ingredient count="1" id="13072" />
 		<!-- Gemstone S -->
 		<ingredient count="623" id="2134" />
-		<!-- Vesper Shaper - Gale - Crt. Damage -->
+		<!-- Vesper Shaper - Gale - Critical Damage -->
 		<production count="1" id="16065" />
 	</item>
 	<item>
@@ -2251,33 +2251,33 @@
 		<production count="1" id="16080" />
 	</item>
 	<item>
-		<!-- Vesper Singer - Tidal Wave -->
+		<!-- Vesper Singer - Hail -->
 		<ingredient count="1" id="16051" />
 		<!-- Red Soul Crystal - Stage 16 -->
 		<ingredient count="1" id="13071" />
 		<!-- Gemstone S -->
 		<ingredient count="623" id="2134" />
-		<!-- Vesper Singer - Tidal Wave - Empower -->
+		<!-- Vesper Singer - Hail - Empower -->
 		<production count="1" id="16083" />
 	</item>
 	<item>
-		<!-- Vesper Singer - Tidal Wave -->
+		<!-- Vesper Singer - Hail -->
 		<ingredient count="1" id="16051" />
 		<!-- Green Soul Crystal - Stage 16 -->
 		<ingredient count="1" id="13073" />
 		<!-- Gemstone S -->
 		<ingredient count="623" id="2134" />
-		<!-- Vesper Singer - Tidal Wave - MP Regeneration -->
+		<!-- Vesper Singer - Hail - MP Regeneration -->
 		<production count="1" id="16084" />
 	</item>
 	<item>
-		<!-- Vesper Singer - Tidal Wave -->
+		<!-- Vesper Singer - Hail -->
 		<ingredient count="1" id="16051" />
 		<!-- Blue Soul Crystal - Stage 16 -->
 		<ingredient count="1" id="13072" />
 		<!-- Gemstone S -->
 		<ingredient count="623" id="2134" />
-		<!-- Vesper Singer - Tidal Wave - Magic Hold -->
+		<!-- Vesper Singer - Hail - Magic Hold -->
 		<production count="1" id="16085" />
 	</item>
 	<item>
@@ -2307,7 +2307,7 @@
 		<ingredient count="1" id="13073" />
 		<!-- Gemstone S -->
 		<ingredient count="623" id="2134" />
-		<!-- Vesper Thrower - Clairvoyance - Crt. Slow -->
+		<!-- Vesper Thrower - Clairvoyance - Critical Slow -->
 		<production count="1" id="16088" />
 	</item>
 	<item>
@@ -2341,33 +2341,33 @@
 		<production count="1" id="16089" />
 	</item>
 	<item>
-		<!-- Vesper Schutze - Clairvoyance -->
+		<!-- Vesper Shooter - Clairvoyance -->
 		<ingredient count="1" id="16054" />
 		<!-- Blue Soul Crystal - Stage 16 -->
 		<ingredient count="1" id="13072" />
 		<!-- Gemstone S -->
 		<ingredient count="623" id="2134" />
-		<!-- Vesper Schutze - Clairvoyance - Focus -->
+		<!-- Vesper Shooter - Clairvoyance - Focus -->
 		<production count="1" id="16093" />
 	</item>
 	<item>
-		<!-- Vesper Schutze - Clairvoyance -->
+		<!-- Vesper Shooter - Clairvoyance -->
 		<ingredient count="1" id="16054" />
 		<!-- Green Soul Crystal - Stage 16 -->
 		<ingredient count="1" id="13073" />
 		<!-- Gemstone S -->
 		<ingredient count="623" id="2134" />
-		<!-- Vesper Schutze - Clairvoyance - Crt. Slow -->
+		<!-- Vesper Shooter - Clairvoyance - Critical Slow -->
 		<production count="1" id="16094" />
 	</item>
 	<item>
-		<!-- Vesper Schutze - Clairvoyance -->
+		<!-- Vesper Shooter - Clairvoyance -->
 		<ingredient count="1" id="16054" />
 		<!-- Red Soul Crystal - Stage 16 -->
 		<ingredient count="1" id="13071" />
 		<!-- Gemstone S -->
 		<ingredient count="623" id="2134" />
-		<!-- Vesper Schutze - Clairvoyance - Cheap Shot -->
+		<!-- Vesper Shooter - Clairvoyance - Cheap Shot -->
 		<production count="1" id="16092" />
 	</item>
 	<item>
@@ -2447,7 +2447,7 @@
 		<ingredient count="1" id="15543" />
 		<!-- Gemstone S -->
 		<ingredient count="1073" id="2134" />
-		<!-- Skull Edge - Crt. Damage -->
+		<!-- Skull Edge - Critical Damage -->
 		<production count="1" id="15834" />
 	</item>
 	<item>
@@ -2557,7 +2557,7 @@
 		<ingredient count="1" id="15541" />
 		<!-- Gemstone S -->
 		<ingredient count="1073" id="2134" />
-		<!-- Octo Claw - Crt. Stun -->
+		<!-- Octo Claw - Critical Stun -->
 		<production count="1" id="15845" />
 	</item>
 	<item>
@@ -2707,7 +2707,7 @@
 		<ingredient count="1" id="15541" />
 		<!-- Gemstone S -->
 		<ingredient count="1073" id="2134" />
-		<!-- Skull Carnium Bow - Crt. Slow -->
+		<!-- Skull Carnium Bow - Critical Slow -->
 		<production count="1" id="15860" />
 	</item>
 	<item>
@@ -2797,7 +2797,7 @@
 		<ingredient count="1" id="15541" />
 		<!-- Gemstone S -->
 		<ingredient count="1073" id="2134" />
-		<!-- Dominion Crossbow - Crt. Slow -->
+		<!-- Dominion Crossbow - Critical Slow -->
 		<production count="1" id="15869" />
 	</item>
 	<item>
@@ -2877,7 +2877,7 @@
 		<ingredient count="1" id="15827" />
 		<!-- Gemstone S -->
 		<ingredient count="2022" id="2134" />
-		<!-- Mamba Edge - Crt. Damage -->
+		<!-- Mamba Edge - Critical Damage -->
 		<production count="1" id="15875" />
 	</item>
 	<item>
@@ -2987,7 +2987,7 @@
 		<ingredient count="1" id="15828" />
 		<!-- Gemstone S -->
 		<ingredient count="2022" id="2134" />
-		<!-- Jade Claw - Crt. Stun -->
+		<!-- Jade Claw - Critical Stun -->
 		<production count="1" id="15886" />
 	</item>
 	<item>
@@ -3137,7 +3137,7 @@
 		<ingredient count="1" id="15828" />
 		<!-- Gemstone S -->
 		<ingredient count="2022" id="2134" />
-		<!-- Recurve Thorne Bow - Crt. Slow -->
+		<!-- Recurve Thorne Bow - Critical Slow -->
 		<production count="1" id="15901" />
 	</item>
 	<item>
@@ -3227,7 +3227,7 @@
 		<ingredient count="1" id="15828" />
 		<!-- Gemstone S -->
 		<ingredient count="2022" id="2134" />
-		<!-- Thorne Crossbow - Crt. Slow -->
+		<!-- Thorne Crossbow - Critical Slow -->
 		<production count="1" id="15910" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/326150003.xml b/L2J_DataPack_BETA/dist/game/data/multisell/326150003.xml
index d63df55a4f5dc761c372df87c82d066893addba8..97b9a69c39b29b1063ca7b6b61e05ef4bfefe8f5 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/326150003.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/326150003.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Dynasty Sword - Focus -->
 		<ingredient count="1" id="9854" />
@@ -1135,21 +1135,21 @@
 		<production count="1" id="13468" />
 	</item>
 	<item>
-		<!-- Vesper Sheutjeh - Focus -->
+		<!-- Vesper Shooter - Focus -->
 		<ingredient count="1" id="14155" />
-		<!-- Vesper Sheutjeh -->
+		<!-- Vesper Shooter -->
 		<production count="1" id="13469" />
 	</item>
 	<item>
-		<!-- Vesper Sheutjeh - Critical Slow -->
+		<!-- Vesper Shooter - Critical Slow -->
 		<ingredient count="1" id="14156" />
-		<!-- Vesper Sheutjeh -->
+		<!-- Vesper Shooter -->
 		<production count="1" id="13469" />
 	</item>
 	<item>
-		<!-- Vesper Sheutjeh - Cheap Shot -->
+		<!-- Vesper Shooter - Cheap Shot -->
 		<ingredient count="1" id="14154" />
-		<!-- Vesper Sheutjeh -->
+		<!-- Vesper Shooter -->
 		<production count="1" id="13469" />
 	</item>
 	<item>
@@ -1231,7 +1231,7 @@
 		<production count="1" id="16046" />
 	</item>
 	<item>
-		<!-- Vesper Fighter - Gale - Crt. Stun -->
+		<!-- Vesper Fighter - Gale - Critical Stun -->
 		<ingredient count="1" id="16070" />
 		<!-- Vesper Fighter - Gale -->
 		<production count="1" id="16046" />
@@ -1273,7 +1273,7 @@
 		<production count="1" id="16045" />
 	</item>
 	<item>
-		<!-- Vesper Shaper - Gale - Crt. Damage -->
+		<!-- Vesper Shaper - Gale - Critical Damage -->
 		<ingredient count="1" id="16065" />
 		<!-- Vesper Shaper - Gale -->
 		<production count="1" id="16045" />
@@ -1333,21 +1333,21 @@
 		<production count="1" id="16049" />
 	</item>
 	<item>
-		<!-- Vesper Singer - Tidal Wave - Empower -->
+		<!-- Vesper Singer - Hail - Empower -->
 		<ingredient count="1" id="16083" />
-		<!-- Vesper Singer - Tidal Wave -->
+		<!-- Vesper Singer - Hail -->
 		<production count="1" id="16051" />
 	</item>
 	<item>
-		<!-- Vesper Singer - Tidal Wave - MP Regeneration -->
+		<!-- Vesper Singer - Hail - MP Regeneration -->
 		<ingredient count="1" id="16084" />
-		<!-- Vesper Singer - Tidal Wave -->
+		<!-- Vesper Singer - Hail -->
 		<production count="1" id="16051" />
 	</item>
 	<item>
-		<!-- Vesper Singer - Tidal Wave - Magic Hold -->
+		<!-- Vesper Singer - Hail - Magic Hold -->
 		<ingredient count="1" id="16085" />
-		<!-- Vesper Singer - Tidal Wave -->
+		<!-- Vesper Singer - Hail -->
 		<production count="1" id="16051" />
 	</item>
 	<item>
@@ -1363,7 +1363,7 @@
 		<production count="1" id="16052" />
 	</item>
 	<item>
-		<!-- Vesper Thrower - Clairvoyance - Crt. Slow -->
+		<!-- Vesper Thrower - Clairvoyance - Critical Slow -->
 		<ingredient count="1" id="16088" />
 		<!-- Vesper Thrower - Clairvoyance -->
 		<production count="1" id="16052" />
@@ -1387,21 +1387,21 @@
 		<production count="1" id="16053" />
 	</item>
 	<item>
-		<!-- Vesper Schutze - Clairvoyance - Focus -->
+		<!-- Vesper Shooter - Clairvoyance - Focus -->
 		<ingredient count="1" id="16093" />
-		<!-- Vesper Schutze - Clairvoyance -->
+		<!-- Vesper Shooter - Clairvoyance -->
 		<production count="1" id="16054" />
 	</item>
 	<item>
-		<!-- Vesper Schutze - Clairvoyance - Crt. Slow -->
+		<!-- Vesper Shooter - Clairvoyance - Critical Slow -->
 		<ingredient count="1" id="16094" />
-		<!-- Vesper Schutze - Clairvoyance -->
+		<!-- Vesper Shooter - Clairvoyance -->
 		<production count="1" id="16054" />
 	</item>
 	<item>
-		<!-- Vesper Schutze - Clairvoyance - Cheap Shot -->
+		<!-- Vesper Shooter - Clairvoyance - Cheap Shot -->
 		<ingredient count="1" id="16092" />
-		<!-- Vesper Schutze - Clairvoyance -->
+		<!-- Vesper Shooter - Clairvoyance -->
 		<production count="1" id="16054" />
 	</item>
 	<item>
@@ -1465,7 +1465,7 @@
 		<production count="1" id="15559" />
 	</item>
 	<item>
-		<!-- Skull Edge - Crt. Damage -->
+		<!-- Skull Edge - Critical Damage -->
 		<ingredient count="1" id="15834" />
 		<!-- Skull Edge -->
 		<production count="1" id="15559" />
@@ -1531,7 +1531,7 @@
 		<production count="1" id="15562" />
 	</item>
 	<item>
-		<!-- Octo Claw - Crt. Stun -->
+		<!-- Octo Claw - Critical Stun -->
 		<ingredient count="1" id="15845" />
 		<!-- Octo Claw -->
 		<production count="1" id="15563" />
@@ -1621,7 +1621,7 @@
 		<production count="1" id="15567" />
 	</item>
 	<item>
-		<!-- Skull Carnium Bow - Crt. Slow -->
+		<!-- Skull Carnium Bow - Critical Slow -->
 		<ingredient count="1" id="15860" />
 		<!-- Skull Carnium Bow -->
 		<production count="1" id="15568" />
@@ -1675,7 +1675,7 @@
 		<production count="1" id="15570" />
 	</item>
 	<item>
-		<!-- Dominion Crossbow - Crt. Slow -->
+		<!-- Dominion Crossbow - Critical Slow -->
 		<ingredient count="1" id="15869" />
 		<!-- Dominion Crossbow -->
 		<production count="1" id="15571" />
@@ -1723,7 +1723,7 @@
 		<production count="1" id="15545" />
 	</item>
 	<item>
-		<!-- Mamba Edge - Crt. Damage -->
+		<!-- Mamba Edge - Critical Damage -->
 		<ingredient count="1" id="15875" />
 		<!-- Mamba Edge -->
 		<production count="1" id="15545" />
@@ -1789,7 +1789,7 @@
 		<production count="1" id="15549" />
 	</item>
 	<item>
-		<!-- Jade Claw - Crt. Stun -->
+		<!-- Jade Claw - Critical Stun -->
 		<ingredient count="1" id="15886" />
 		<!-- Jade Claw -->
 		<production count="1" id="15549" />
@@ -1879,7 +1879,7 @@
 		<production count="1" id="15554" />
 	</item>
 	<item>
-		<!-- Recurve Thorne Bow - Crt. Slow -->
+		<!-- Recurve Thorne Bow - Critical Slow -->
 		<ingredient count="1" id="15901" />
 		<!-- Recurve Thorne Bow -->
 		<production count="1" id="15554" />
@@ -1933,7 +1933,7 @@
 		<production count="1" id="15557" />
 	</item>
 	<item>
-		<!-- Thorne Crossbow - Crt. Slow -->
+		<!-- Thorne Crossbow - Critical Slow -->
 		<ingredient count="1" id="15910" />
 		<!-- Thorne Crossbow -->
 		<production count="1" id="15557" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/326150004.xml b/L2J_DataPack_BETA/dist/game/data/multisell/326150004.xml
index 11cd7358f63d7fc15670826f0a37da04253e1a36..f4f01cdadefb5a339ca162a4ed78aa7d2082a79c 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/326150004.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/326150004.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Sealed Dynasty Breast Plate -->
 		<ingredient count="1" id="9514" />
@@ -13,7 +13,7 @@
 		<ingredient count="1" id="9515" />
 		<!-- Adena -->
 		<ingredient count="1144000" id="57" />
-		<!-- Dynasty Gaiter -->
+		<!-- Dynasty Gaiters -->
 		<production count="1" id="9421" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/326150005.xml b/L2J_DataPack_BETA/dist/game/data/multisell/326150005.xml
index 65756896f85ba843a59b939e8938e18ce4b62218..aa8984032331f54b1dbdf0cfbe8db6e7236b383e 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/326150005.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/326150005.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Sealed Dynasty Earring -->
 		<ingredient count="1" id="9452" />
@@ -29,7 +29,7 @@
 		<ingredient count="1" id="11604" />
 		<!-- Adena -->
 		<ingredient count="1924000" id="57" />
-		<!-- Dynasty Earring -->
+		<!-- Dynasty Earrings -->
 		<production count="1" id="11601" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/326150006.xml b/L2J_DataPack_BETA/dist/game/data/multisell/326150006.xml
index e219cb953d3fac165f86669b3a399128e7e3f874..2f67bf14217165044a79a74575d5beb6caa8f6c2 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/326150006.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/326150006.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Vesper Helmet -->
 		<ingredient count="1" id="13137" />
@@ -157,7 +157,7 @@
 		<ingredient count="1" id="16310" />
 		<!-- Noble Enhancement Stone -->
 		<ingredient count="860" id="14052" />
-		<!-- Vesper Noble Leather Breastplate -->
+		<!-- Vesper Noble Houberk -->
 		<production count="1" id="16841" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/326150007.xml b/L2J_DataPack_BETA/dist/game/data/multisell/326150007.xml
index 1ec2ad8fd581e3c8c6a80ee9e3365d7a7833bbdf..3846ddd4d0b6d669ab44d88346890375926ac2a6 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/326150007.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/326150007.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Great Sword - Lightning -->
 		<ingredient count="1" id="10870" />
@@ -145,9 +145,9 @@
 		<production count="1" id="175" />
 	</item>
 	<item>
-		<!-- Demon Dagger - Great Gale -->
+		<!-- Demon's Dagger - Great Gale -->
 		<ingredient count="1" id="10992" />
-		<!-- Demon Dagger -->
+		<!-- Demon's Dagger -->
 		<production count="1" id="234" />
 	</item>
 	<item>
@@ -271,7 +271,7 @@
 		<production count="1" id="9340" />
 	</item>
 	<item>
-		<!-- Dark Legion - Thunder -->
+		<!-- Dark Legion's Edge - Thunder -->
 		<ingredient count="1" id="11080" />
 		<!-- Dark Legion's Edge -->
 		<production count="1" id="2500" />
@@ -471,7 +471,7 @@
 	<item>
 		<!-- Sarunga - Earth -->
 		<ingredient count="1" id="11214" />
-		<!-- Sarnga -->
+		<!-- Sarunga -->
 		<production count="1" id="9372" />
 	</item>
 	<item>
@@ -721,7 +721,7 @@
 		<production count="1" id="13465" />
 	</item>
 	<item>
-		<!-- Vesper Singer - Tidal Wave -->
+		<!-- Vesper Singer - Hail -->
 		<ingredient count="1" id="16051" />
 		<!-- Vesper Singer -->
 		<production count="1" id="13466" />
@@ -739,9 +739,9 @@
 		<production count="1" id="13468" />
 	</item>
 	<item>
-		<!-- Vesper Schutze - Clairvoyance -->
+		<!-- Vesper Shooter - Clairvoyance -->
 		<ingredient count="1" id="16054" />
-		<!-- Vesper Sheutjeh -->
+		<!-- Vesper Shooter -->
 		<production count="1" id="13469" />
 	</item>
 	<item>
@@ -753,25 +753,25 @@
 	<item>
 		<!-- Sealed Zubei's Gauntlet -->
 		<ingredient count="1" id="11349" />
-		<!-- Zubei's Gauntlets -->
+		<!-- Sealed Zubei's Gauntlets -->
 		<production count="1" id="612" />
 	</item>
 	<item>
 		<!-- Sealed Zubei's Boots -->
 		<ingredient count="1" id="11350" />
-		<!-- Zubei's Boots -->
+		<!-- Sealed Zubei's Boots -->
 		<production count="1" id="554" />
 	</item>
 	<item>
 		<!-- Sealed Avadon Gloves -->
 		<ingredient count="1" id="11351" />
-		<!-- Avadon Gloves -->
+		<!-- Sealed Avadon Gloves -->
 		<production count="1" id="2464" />
 	</item>
 	<item>
 		<!-- Sealed Avadon Boots -->
 		<ingredient count="1" id="11352" />
-		<!-- Avadon Boots -->
+		<!-- Sealed Avadon Boots -->
 		<production count="1" id="600" />
 	</item>
 	<item>
@@ -867,25 +867,25 @@
 	<item>
 		<!-- Sealed Doom Gloves -->
 		<ingredient count="1" id="11389" />
-		<!-- Doom Gloves -->
+		<!-- Sealed Doom Gloves -->
 		<production count="1" id="2475" />
 	</item>
 	<item>
-		<!-- Sealed Boots of Doom -->
+		<!-- Sealed Doom Boots -->
 		<ingredient count="1" id="11390" />
-		<!-- Boots of Doom -->
+		<!-- Sealed Doom Boots -->
 		<production count="1" id="601" />
 	</item>
 	<item>
 		<!-- Sealed Blue Wolf Boots -->
 		<ingredient count="1" id="11391" />
-		<!-- Blue Wolf Boots -->
+		<!-- Sealed Blue Wolf Boots -->
 		<production count="1" id="2439" />
 	</item>
 	<item>
 		<!-- Sealed Blue Wolf Gloves -->
 		<ingredient count="1" id="11392" />
-		<!-- Blue Wolf Gloves -->
+		<!-- Sealed Blue Wolf Gloves -->
 		<production count="1" id="2487" />
 	</item>
 	<item>
@@ -937,7 +937,7 @@
 		<production count="1" id="388" />
 	</item>
 	<item>
-		<!-- Dark Crystal Gloves - Heavy Armor Use -->
+		<!-- Dark Crystal Gloves - Heavy Armor -->
 		<ingredient count="1" id="11408" />
 		<!-- Dark Crystal Gloves - Heavy Armor -->
 		<production count="1" id="5765" />
@@ -949,7 +949,7 @@
 		<production count="1" id="5766" />
 	</item>
 	<item>
-		<!-- Dark Crystal Gloves - Robe Use -->
+		<!-- Dark Crystal Gloves - Robe -->
 		<ingredient count="1" id="11410" />
 		<!-- Dark Crystal Gloves - Robe -->
 		<production count="1" id="5767" />
@@ -967,7 +967,7 @@
 		<production count="1" id="2407" />
 	</item>
 	<item>
-		<!-- Dark Crystal Boots - Heavy Armor Use -->
+		<!-- Dark Crystal Boots - Heavy Armor -->
 		<ingredient count="1" id="11413" />
 		<!-- Dark Crystal Boots - Heavy Armor -->
 		<production count="1" id="5777" />
@@ -979,7 +979,7 @@
 		<production count="1" id="5778" />
 	</item>
 	<item>
-		<!-- Dark Crystal Boots - Robe Use -->
+		<!-- Dark Crystal Boots - Robe -->
 		<ingredient count="1" id="11415" />
 		<!-- Dark Crystal Boots - Robe -->
 		<production count="1" id="5779" />
@@ -1003,7 +1003,7 @@
 		<production count="1" id="2389" />
 	</item>
 	<item>
-		<!-- Tallum Gloves - Heavy Armor Use -->
+		<!-- Tallum Gloves - Heavy Armor -->
 		<ingredient count="1" id="11437" />
 		<!-- Tallum Gloves - Heavy Armor -->
 		<production count="1" id="5768" />
@@ -1015,7 +1015,7 @@
 		<production count="1" id="5769" />
 	</item>
 	<item>
-		<!-- Tallum Gloves - Robe Use -->
+		<!-- Tallum Gloves - Robe -->
 		<ingredient count="1" id="11439" />
 		<!-- Tallum Gloves - Robe -->
 		<production count="1" id="5770" />
@@ -1027,7 +1027,7 @@
 		<production count="1" id="2393" />
 	</item>
 	<item>
-		<!-- Tallum Boots - Heavy Armor Use -->
+		<!-- Tallum Boots - Heavy Armor -->
 		<ingredient count="1" id="11441" />
 		<!-- Tallum Boots - Heavy Armor -->
 		<production count="1" id="5780" />
@@ -1039,7 +1039,7 @@
 		<production count="1" id="5781" />
 	</item>
 	<item>
-		<!-- Tallum Boots - Robe Use -->
+		<!-- Tallum Boots - Robe -->
 		<ingredient count="1" id="11443" />
 		<!-- Tallum Boots - Robe -->
 		<production count="1" id="5782" />
@@ -1063,7 +1063,7 @@
 		<production count="1" id="2405" />
 	</item>
 	<item>
-		<!-- Majestic Gauntlet - Heavy Armor Use -->
+		<!-- Majestic Gauntlet - Heavy Armor -->
 		<ingredient count="1" id="11448" />
 		<!-- Majestic Gauntlets - Heavy Armor -->
 		<production count="1" id="5774" />
@@ -1075,7 +1075,7 @@
 		<production count="1" id="5775" />
 	</item>
 	<item>
-		<!-- Majestic Gauntlet - Robe Use -->
+		<!-- Majestic Gauntlet - Robe -->
 		<ingredient count="1" id="11450" />
 		<!-- Majestic Gauntlets - Robe -->
 		<production count="1" id="5776" />
@@ -1093,7 +1093,7 @@
 		<production count="1" id="2409" />
 	</item>
 	<item>
-		<!-- Majestic Boots - Heavy Armor Use -->
+		<!-- Majestic Boots - Heavy Armor -->
 		<ingredient count="1" id="11453" />
 		<!-- Majestic Boots - Heavy Armor -->
 		<production count="1" id="5786" />
@@ -1105,7 +1105,7 @@
 		<production count="1" id="5787" />
 	</item>
 	<item>
-		<!-- Majestic Boots - Robe Use -->
+		<!-- Majestic Boots - Robe -->
 		<ingredient count="1" id="11455" />
 		<!-- Majestic Boots - Robe -->
 		<production count="1" id="5788" />
@@ -1117,7 +1117,7 @@
 		<production count="1" id="374" />
 	</item>
 	<item>
-		<!-- Gauntlet of Nightmare - Heavy Armor Use -->
+		<!-- Gauntlet of Nightmare - Heavy Armor -->
 		<ingredient count="1" id="11472" />
 		<!-- Gauntlets of Nightmare - Heavy Armor -->
 		<production count="1" id="5771" />
@@ -1129,25 +1129,25 @@
 		<production count="1" id="5772" />
 	</item>
 	<item>
-		<!-- Gauntlet of Nightmare - Robe Use -->
+		<!-- Gauntlet of Nightmare - Robe -->
 		<ingredient count="1" id="11474" />
 		<!-- Gauntlets of Nightmare - Robe -->
 		<production count="1" id="5773" />
 	</item>
 	<item>
-		<!-- Nightmarish Leather Armor -->
+		<!-- Leather Armor of Nightmare -->
 		<ingredient count="1" id="11475" />
-		<!-- Nightmarish Leather Armor -->
+		<!-- Leather Armor of Nightmare -->
 		<production count="1" id="2394" />
 	</item>
 	<item>
-		<!-- Nightmare Robe -->
+		<!-- Robe of Nightmare -->
 		<ingredient count="1" id="11476" />
-		<!-- Nightmare Robe -->
+		<!-- Robe of Nightmare -->
 		<production count="1" id="2408" />
 	</item>
 	<item>
-		<!-- Boots of Nightmare - Heavy Armor Use -->
+		<!-- Boots of Nightmare - Heavy Armor -->
 		<ingredient count="1" id="11477" />
 		<!-- Boots of Nightmare - Heavy Armor -->
 		<production count="1" id="5783" />
@@ -1159,7 +1159,7 @@
 		<production count="1" id="5784" />
 	</item>
 	<item>
-		<!-- Boots of Nightmare - Robe Use -->
+		<!-- Boots of Nightmare - Robe -->
 		<ingredient count="1" id="11479" />
 		<!-- Boots of Nightmare - Robe -->
 		<production count="1" id="5785" />
@@ -1263,7 +1263,7 @@
 	<item>
 		<!-- Dynasty Gaiters -->
 		<ingredient count="1" id="11512" />
-		<!-- Dynasty Gaiter -->
+		<!-- Dynasty Gaiters -->
 		<production count="1" id="9421" />
 	</item>
 	<item>
@@ -1567,7 +1567,7 @@
 		<production count="1" id="12813" />
 	</item>
 	<item>
-		<!-- Zubei's Helmet - Heavy Armor Use -->
+		<!-- Zubei's Helmet - Heavy Armor -->
 		<ingredient count="1" id="11363" />
 		<!-- Zubei's Helmet -->
 		<production count="1" id="503" />
@@ -1579,13 +1579,13 @@
 		<production count="1" id="503" />
 	</item>
 	<item>
-		<!-- Zubei's Helmet - Robe Use -->
+		<!-- Zubei's Helmet - Robe -->
 		<ingredient count="1" id="12979" />
 		<!-- Zubei's Helmet -->
 		<production count="1" id="503" />
 	</item>
 	<item>
-		<!-- Avadon Circlet - Heavy Armor Use -->
+		<!-- Avadon Circlet - Heavy Armor -->
 		<ingredient count="1" id="11373" />
 		<!-- Avadon Circlet -->
 		<production count="1" id="2415" />
@@ -1597,13 +1597,13 @@
 		<production count="1" id="2415" />
 	</item>
 	<item>
-		<!-- Avadon Circlet - Robe Use -->
+		<!-- Avadon Circlet - Robe -->
 		<ingredient count="1" id="12981" />
 		<!-- Avadon Circlet -->
 		<production count="1" id="2415" />
 	</item>
 	<item>
-		<!-- Doom Helmet - Heavy Armor Use -->
+		<!-- Doom Helmet - Heavy Armor -->
 		<ingredient count="1" id="11387" />
 		<!-- Doom Helmet -->
 		<production count="1" id="2417" />
@@ -1615,13 +1615,13 @@
 		<production count="1" id="2417" />
 	</item>
 	<item>
-		<!-- Doom Helmet - Robe Use -->
+		<!-- Doom Helmet - Robe -->
 		<ingredient count="1" id="12983" />
 		<!-- Doom Helmet -->
 		<production count="1" id="2417" />
 	</item>
 	<item>
-		<!-- Blue Wolf Helmet - Heavy Armor Use -->
+		<!-- Blue Wolf Helmet - Heavy Armor -->
 		<ingredient count="1" id="11403" />
 		<!-- Blue Wolf Helmet -->
 		<production count="1" id="2416" />
@@ -1633,13 +1633,13 @@
 		<production count="1" id="2416" />
 	</item>
 	<item>
-		<!-- Blue Wolf Helmet - Robe Use -->
+		<!-- Blue Wolf Helmet - Robe -->
 		<ingredient count="1" id="12985" />
 		<!-- Blue Wolf Helmet -->
 		<production count="1" id="2416" />
 	</item>
 	<item>
-		<!-- Dark Crystal Helmet - Heavy Armor Use -->
+		<!-- Dark Crystal Helmet - Heavy Armor -->
 		<ingredient count="1" id="11417" />
 		<!-- Dark Crystal Helmet -->
 		<production count="1" id="512" />
@@ -1651,13 +1651,13 @@
 		<production count="1" id="512" />
 	</item>
 	<item>
-		<!-- Dark Crystal Helmet - Robe Use -->
+		<!-- Dark Crystal Helmet - Robe -->
 		<ingredient count="1" id="12987" />
 		<!-- Dark Crystal Helmet -->
 		<production count="1" id="512" />
 	</item>
 	<item>
-		<!-- Tallum Helmet - Heavy Armor Use -->
+		<!-- Tallum Helmet - Heavy Armor -->
 		<ingredient count="1" id="11446" />
 		<!-- Tallum Helm -->
 		<production count="1" id="547" />
@@ -1669,13 +1669,13 @@
 		<production count="1" id="547" />
 	</item>
 	<item>
-		<!-- Tallum Helmet - Robe Use -->
+		<!-- Tallum Helmet - Robe -->
 		<ingredient count="1" id="12989" />
 		<!-- Tallum Helm -->
 		<production count="1" id="547" />
 	</item>
 	<item>
-		<!-- Majestic Circlet - Heavy Armor Use -->
+		<!-- Majestic Circlet - Heavy Armor -->
 		<ingredient count="1" id="11456" />
 		<!-- Majestic Circlet -->
 		<production count="1" id="2419" />
@@ -1687,13 +1687,13 @@
 		<production count="1" id="2419" />
 	</item>
 	<item>
-		<!-- Majestic Circlet - Robe Use -->
+		<!-- Majestic Circlet - Robe -->
 		<ingredient count="1" id="12991" />
 		<!-- Majestic Circlet -->
 		<production count="1" id="2419" />
 	</item>
 	<item>
-		<!-- Helm of Nightmare - Heavy Armor Use -->
+		<!-- Helm of Nightmare - Heavy Armor -->
 		<ingredient count="1" id="11481" />
 		<!-- Helm of Nightmare -->
 		<production count="1" id="2418" />
@@ -1705,7 +1705,7 @@
 		<production count="1" id="2418" />
 	</item>
 	<item>
-		<!-- Helm of Nightmare - Robe Use -->
+		<!-- Helm of Nightmare - Robe -->
 		<ingredient count="1" id="12993" />
 		<!-- Helm of Nightmare -->
 		<production count="1" id="2418" />
@@ -1813,7 +1813,7 @@
 		<production count="1" id="9457" />
 	</item>
 	<item>
-		<!-- Dynasty Earring -->
+		<!-- Dynasty Earrings -->
 		<ingredient count="1" id="11601" />
 		<!-- Dynasty Earrings -->
 		<production count="1" id="9455" />
@@ -1945,7 +1945,7 @@
 		<production count="1" id="13435" />
 	</item>
 	<item>
-		<!-- Vesper Noble Leather Breastplate -->
+		<!-- Vesper Noble Houberk -->
 		<ingredient count="1" id="16841" />
 		<!-- Vesper Noble Leather Breastplate -->
 		<production count="1" id="13436" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/326150008.xml b/L2J_DataPack_BETA/dist/game/data/multisell/326150008.xml
index 904995f3ab17590c66746568b8b703d9f4d8f671..3c7ec15f57983fed5dbd5128768d4f64a4e86926 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/326150008.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/326150008.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Dynasty Breast Plate - Weapon Master -->
 		<ingredient count="1" id="9418" />
@@ -529,11 +529,11 @@
 		<production count="1" id="10231" />
 	</item>
 	<item>
-		<!-- Dynasty Jewel Leather Mail - Bow Master -->
+		<!-- Dynasty Jewel Leather Armor - Bow Master -->
 		<ingredient count="1" id="10234" />
 		<!-- Adena -->
 		<ingredient count="252550" id="57" />
-		<!-- Dynasty Jewel Leather Mail - Dagger Master -->
+		<!-- Dynasty Jewel Leather Armor - Dagger Master -->
 		<production count="1" id="10233" />
 	</item>
 	<item>
@@ -541,7 +541,7 @@
 		<ingredient count="1" id="10487" />
 		<!-- Adena -->
 		<ingredient count="252550" id="57" />
-		<!-- Dynasty Jewel Leather Mail - Dagger Master -->
+		<!-- Dynasty Jewel Leather Armor - Dagger Master -->
 		<production count="1" id="10233" />
 	</item>
 	<item>
@@ -549,7 +549,7 @@
 		<ingredient count="1" id="10488" />
 		<!-- Adena -->
 		<ingredient count="252550" id="57" />
-		<!-- Dynasty Jewel Leather Mail - Dagger Master -->
+		<!-- Dynasty Jewel Leather Armor - Dagger Master -->
 		<production count="1" id="10233" />
 	</item>
 	<item>
@@ -557,7 +557,7 @@
 		<ingredient count="1" id="10489" />
 		<!-- Adena -->
 		<ingredient count="252550" id="57" />
-		<!-- Dynasty Jewel Leather Mail - Dagger Master -->
+		<!-- Dynasty Jewel Leather Armor - Dagger Master -->
 		<production count="1" id="10233" />
 	</item>
 	<item>
@@ -565,15 +565,15 @@
 		<ingredient count="1" id="10490" />
 		<!-- Adena -->
 		<ingredient count="252550" id="57" />
-		<!-- Dynasty Jewel Leather Mail - Dagger Master -->
+		<!-- Dynasty Jewel Leather Armor - Dagger Master -->
 		<production count="1" id="10233" />
 	</item>
 	<item>
-		<!-- Dynasty Jewel Leather Mail - Dagger Master -->
+		<!-- Dynasty Jewel Leather Armor - Dagger Master -->
 		<ingredient count="1" id="10233" />
 		<!-- Adena -->
 		<ingredient count="252550" id="57" />
-		<!-- Dynasty Jewel Leather Mail - Bow Master -->
+		<!-- Dynasty Jewel Leather Armor - Bow Master -->
 		<production count="1" id="10234" />
 	</item>
 	<item>
@@ -581,7 +581,7 @@
 		<ingredient count="1" id="10487" />
 		<!-- Adena -->
 		<ingredient count="252550" id="57" />
-		<!-- Dynasty Jewel Leather Mail - Bow Master -->
+		<!-- Dynasty Jewel Leather Armor - Bow Master -->
 		<production count="1" id="10234" />
 	</item>
 	<item>
@@ -589,7 +589,7 @@
 		<ingredient count="1" id="10488" />
 		<!-- Adena -->
 		<ingredient count="252550" id="57" />
-		<!-- Dynasty Jewel Leather Mail - Bow Master -->
+		<!-- Dynasty Jewel Leather Armor - Bow Master -->
 		<production count="1" id="10234" />
 	</item>
 	<item>
@@ -597,7 +597,7 @@
 		<ingredient count="1" id="10489" />
 		<!-- Adena -->
 		<ingredient count="252550" id="57" />
-		<!-- Dynasty Jewel Leather Mail - Bow Master -->
+		<!-- Dynasty Jewel Leather Armor - Bow Master -->
 		<production count="1" id="10234" />
 	</item>
 	<item>
@@ -605,11 +605,11 @@
 		<ingredient count="1" id="10490" />
 		<!-- Adena -->
 		<ingredient count="252550" id="57" />
-		<!-- Dynasty Jewel Leather Mail - Bow Master -->
+		<!-- Dynasty Jewel Leather Armor - Bow Master -->
 		<production count="1" id="10234" />
 	</item>
 	<item>
-		<!-- Dynasty Jewel Leather Mail - Dagger Master -->
+		<!-- Dynasty Jewel Leather Armor - Dagger Master -->
 		<ingredient count="1" id="10233" />
 		<!-- Adena -->
 		<ingredient count="252550" id="57" />
@@ -617,7 +617,7 @@
 		<production count="1" id="10487" />
 	</item>
 	<item>
-		<!-- Dynasty Jewel Leather Mail - Bow Master -->
+		<!-- Dynasty Jewel Leather Armor - Bow Master -->
 		<ingredient count="1" id="10234" />
 		<!-- Adena -->
 		<ingredient count="252550" id="57" />
@@ -649,7 +649,7 @@
 		<production count="1" id="10487" />
 	</item>
 	<item>
-		<!-- Dynasty Jewel Leather Mail - Dagger Master -->
+		<!-- Dynasty Jewel Leather Armor - Dagger Master -->
 		<ingredient count="1" id="10233" />
 		<!-- Adena -->
 		<ingredient count="252550" id="57" />
@@ -657,7 +657,7 @@
 		<production count="1" id="10488" />
 	</item>
 	<item>
-		<!-- Dynasty Jewel Leather Mail - Bow Master -->
+		<!-- Dynasty Jewel Leather Armor - Bow Master -->
 		<ingredient count="1" id="10234" />
 		<!-- Adena -->
 		<ingredient count="252550" id="57" />
@@ -689,7 +689,7 @@
 		<production count="1" id="10488" />
 	</item>
 	<item>
-		<!-- Dynasty Jewel Leather Mail - Dagger Master -->
+		<!-- Dynasty Jewel Leather Armor - Dagger Master -->
 		<ingredient count="1" id="10233" />
 		<!-- Adena -->
 		<ingredient count="252550" id="57" />
@@ -697,7 +697,7 @@
 		<production count="1" id="10489" />
 	</item>
 	<item>
-		<!-- Dynasty Jewel Leather Mail - Bow Master -->
+		<!-- Dynasty Jewel Leather Armor - Bow Master -->
 		<ingredient count="1" id="10234" />
 		<!-- Adena -->
 		<ingredient count="252550" id="57" />
@@ -729,7 +729,7 @@
 		<production count="1" id="10489" />
 	</item>
 	<item>
-		<!-- Dynasty Jewel Leather Mail - Dagger Master -->
+		<!-- Dynasty Jewel Leather Armor - Dagger Master -->
 		<ingredient count="1" id="10233" />
 		<!-- Adena -->
 		<ingredient count="252550" id="57" />
@@ -737,7 +737,7 @@
 		<production count="1" id="10490" />
 	</item>
 	<item>
-		<!-- Dynasty Jewel Leather Mail - Bow Master -->
+		<!-- Dynasty Jewel Leather Armor - Bow Master -->
 		<ingredient count="1" id="10234" />
 		<!-- Adena -->
 		<ingredient count="252550" id="57" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/326580001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/326580001.xml
index 8ef952f2ac9ae58fdec63f8343da924aef94b383..f6d7265e21b071eded6a1ba8fe15a7b9e04e022f 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/326580001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/326580001.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Guiding Tea Leaves -->
 		<ingredient count="62" id="15341" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/326600001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/326600001.xml
index f567b17b08036838965392d00edb97d8013bd98f..d7b312db42913d5dab518b976e7fb3768b90d4e1 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/326600001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/326600001.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Certificate of Dawn -->
 		<ingredient count="1" id="17265" />
@@ -102,4 +102,4 @@
 		<!-- Forgotten Scroll - Turn Stone -->
 		<production count="1" id="14221" />
 	</item>
-</list>
\ No newline at end of file
+</list>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/3361.xml b/L2J_DataPack_BETA/dist/game/data/multisell/3361.xml
index b27ab40553adfff87eab5ec066233a4ffaab8ae5..ae5b46b7c4ec191722c9969ef84d095e954ccdc7 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/3361.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/3361.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Beleth's Blood Dragon -->
 		<ingredient count="1" id="3478" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/3362.xml b/L2J_DataPack_BETA/dist/game/data/multisell/3362.xml
index 9a07e6379ee1c8299ac60267d129bf83ba0b8bf2..65195de24f15ada0e891d627de7e2a6552744d14 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/3362.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/3362.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Manak's Gold Giant -->
 		<ingredient count="1" id="3488" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/3363.xml b/L2J_DataPack_BETA/dist/game/data/multisell/3363.xml
index 97f73a61475472d6d1390ca63adfbe8d9de353cc..4cec6d1abbd96b1fd95fcac14f1adaeeef15bf8f 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/3363.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/3363.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Nia's Blood Medusa -->
 		<ingredient count="2" id="3480" />
@@ -33,7 +33,7 @@
 		<ingredient count="4" id="3494" />
 		<!-- Blood Drevanul -->
 		<ingredient count="4" id="3475" />
-		<!-- Ring of Binding -->
+		<!-- Ring of Seal -->
 		<production count="1" id="886" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/350980001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/350980001.xml
index 3566d394a5d4d3a96929f27062d8972cd01cbed1..8e30bb23b38957a38622dfb21532c166cdeb92bf 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/350980001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/350980001.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Mature Red Coda -->
 		<ingredient count="200" id="5098" />
@@ -389,7 +389,7 @@
 		<ingredient count="1000" id="5103" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -397,7 +397,7 @@
 		<ingredient count="1000" id="5838" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -405,7 +405,7 @@
 		<ingredient count="1000" id="5095" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -413,7 +413,7 @@
 		<ingredient count="1000" id="5840" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -421,7 +421,7 @@
 		<ingredient count="250" id="5099" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -429,7 +429,7 @@
 		<ingredient count="250" id="5842" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -437,7 +437,7 @@
 		<ingredient count="250" id="5100" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -445,7 +445,7 @@
 		<ingredient count="250" id="5844" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -453,7 +453,7 @@
 		<ingredient count="200" id="5105" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -461,7 +461,7 @@
 		<ingredient count="200" id="5846" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -469,7 +469,7 @@
 		<ingredient count="125" id="5115" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -477,7 +477,7 @@
 		<ingredient count="125" id="5853" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -485,7 +485,7 @@
 		<ingredient count="100" id="5122" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -493,7 +493,7 @@
 		<ingredient count="100" id="5855" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -501,7 +501,7 @@
 		<ingredient count="50" id="5120" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -509,7 +509,7 @@
 		<ingredient count="50" id="5857" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -517,7 +517,7 @@
 		<ingredient count="120" id="5103" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -525,7 +525,7 @@
 		<ingredient count="120" id="5838" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -533,7 +533,7 @@
 		<ingredient count="120" id="5095" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -541,7 +541,7 @@
 		<ingredient count="120" id="5840" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -549,7 +549,7 @@
 		<ingredient count="30" id="5099" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -557,7 +557,7 @@
 		<ingredient count="30" id="5842" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -565,7 +565,7 @@
 		<ingredient count="30" id="5100" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -573,7 +573,7 @@
 		<ingredient count="30" id="5844" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -581,7 +581,7 @@
 		<ingredient count="24" id="5105" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -589,7 +589,7 @@
 		<ingredient count="24" id="5846" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -597,7 +597,7 @@
 		<ingredient count="15" id="5115" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -605,7 +605,7 @@
 		<ingredient count="15" id="5853" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -613,7 +613,7 @@
 		<ingredient count="12" id="5122" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -621,7 +621,7 @@
 		<ingredient count="12" id="5855" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -629,7 +629,7 @@
 		<ingredient count="6" id="5120" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -637,7 +637,7 @@
 		<ingredient count="6" id="5857" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -645,7 +645,7 @@
 		<ingredient count="2200" id="5103" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -653,7 +653,7 @@
 		<ingredient count="2200" id="5838" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -661,7 +661,7 @@
 		<ingredient count="2200" id="5095" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -669,7 +669,7 @@
 		<ingredient count="2200" id="5840" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -677,7 +677,7 @@
 		<ingredient count="550" id="5099" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -685,7 +685,7 @@
 		<ingredient count="550" id="5842" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -693,7 +693,7 @@
 		<ingredient count="550" id="5100" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -701,7 +701,7 @@
 		<ingredient count="550" id="5844" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -709,7 +709,7 @@
 		<ingredient count="440" id="5105" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -717,7 +717,7 @@
 		<ingredient count="440" id="5846" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -725,7 +725,7 @@
 		<ingredient count="275" id="5115" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -733,7 +733,7 @@
 		<ingredient count="275" id="5853" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -741,7 +741,7 @@
 		<ingredient count="220" id="5122" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -749,7 +749,7 @@
 		<ingredient count="220" id="5855" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -757,7 +757,7 @@
 		<ingredient count="110" id="5120" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -765,7 +765,7 @@
 		<ingredient count="110" id="5857" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -773,7 +773,7 @@
 		<ingredient count="300" id="5103" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -781,7 +781,7 @@
 		<ingredient count="300" id="5838" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -789,7 +789,7 @@
 		<ingredient count="300" id="5095" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -797,7 +797,7 @@
 		<ingredient count="300" id="5840" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -805,7 +805,7 @@
 		<ingredient count="75" id="5099" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -813,7 +813,7 @@
 		<ingredient count="75" id="5842" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -821,7 +821,7 @@
 		<ingredient count="75" id="5100" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -829,7 +829,7 @@
 		<ingredient count="75" id="5844" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -837,7 +837,7 @@
 		<ingredient count="60" id="5105" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -845,7 +845,7 @@
 		<ingredient count="60" id="5846" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -853,7 +853,7 @@
 		<ingredient count="38" id="5115" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -861,7 +861,7 @@
 		<ingredient count="38" id="5853" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -869,7 +869,7 @@
 		<ingredient count="30" id="5122" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -877,7 +877,7 @@
 		<ingredient count="30" id="5855" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -885,7 +885,7 @@
 		<ingredient count="15" id="5120" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -893,7 +893,7 @@
 		<ingredient count="15" id="5857" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -901,7 +901,7 @@
 		<ingredient count="10000" id="5103" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -909,7 +909,7 @@
 		<ingredient count="10000" id="5838" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -917,7 +917,7 @@
 		<ingredient count="10000" id="5095" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -925,7 +925,7 @@
 		<ingredient count="10000" id="5840" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -933,7 +933,7 @@
 		<ingredient count="2500" id="5099" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -941,7 +941,7 @@
 		<ingredient count="2500" id="5842" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -949,7 +949,7 @@
 		<ingredient count="2500" id="5100" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -957,7 +957,7 @@
 		<ingredient count="2500" id="5844" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -965,7 +965,7 @@
 		<ingredient count="2000" id="5105" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -973,7 +973,7 @@
 		<ingredient count="2000" id="5846" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -981,7 +981,7 @@
 		<ingredient count="1250" id="5115" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -989,7 +989,7 @@
 		<ingredient count="1250" id="5853" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -997,7 +997,7 @@
 		<ingredient count="1000" id="5122" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1005,7 +1005,7 @@
 		<ingredient count="1000" id="5855" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1013,7 +1013,7 @@
 		<ingredient count="500" id="5120" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1021,7 +1021,7 @@
 		<ingredient count="500" id="5857" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1029,7 +1029,7 @@
 		<ingredient count="1600" id="5103" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1037,7 +1037,7 @@
 		<ingredient count="1600" id="5838" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1045,7 +1045,7 @@
 		<ingredient count="1600" id="5095" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1053,7 +1053,7 @@
 		<ingredient count="1600" id="5840" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1061,7 +1061,7 @@
 		<ingredient count="400" id="5099" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1069,7 +1069,7 @@
 		<ingredient count="400" id="5842" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1077,7 +1077,7 @@
 		<ingredient count="400" id="5100" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1085,7 +1085,7 @@
 		<ingredient count="400" id="5844" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1093,7 +1093,7 @@
 		<ingredient count="320" id="5105" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1101,7 +1101,7 @@
 		<ingredient count="320" id="5846" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1109,7 +1109,7 @@
 		<ingredient count="200" id="5115" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1117,7 +1117,7 @@
 		<ingredient count="200" id="5853" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1125,7 +1125,7 @@
 		<ingredient count="160" id="5122" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1133,7 +1133,7 @@
 		<ingredient count="160" id="5855" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1141,7 +1141,7 @@
 		<ingredient count="80" id="5120" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1149,7 +1149,7 @@
 		<ingredient count="80" id="5857" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1157,7 +1157,7 @@
 		<ingredient count="36000" id="5103" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1165,7 +1165,7 @@
 		<ingredient count="36000" id="5838" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1173,7 +1173,7 @@
 		<ingredient count="36000" id="5095" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1181,7 +1181,7 @@
 		<ingredient count="36000" id="5840" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1189,7 +1189,7 @@
 		<ingredient count="9000" id="5099" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1197,7 +1197,7 @@
 		<ingredient count="9000" id="5842" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1205,7 +1205,7 @@
 		<ingredient count="9000" id="5100" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1213,7 +1213,7 @@
 		<ingredient count="9000" id="5844" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1221,7 +1221,7 @@
 		<ingredient count="7200" id="5105" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1229,7 +1229,7 @@
 		<ingredient count="7200" id="5846" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1237,7 +1237,7 @@
 		<ingredient count="4500" id="5115" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1245,7 +1245,7 @@
 		<ingredient count="4500" id="5853" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1253,7 +1253,7 @@
 		<ingredient count="3600" id="5122" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1261,7 +1261,7 @@
 		<ingredient count="3600" id="5855" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1269,7 +1269,7 @@
 		<ingredient count="1800" id="5120" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1277,7 +1277,7 @@
 		<ingredient count="1800" id="5857" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1285,7 +1285,7 @@
 		<ingredient count="4800" id="5103" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1293,7 +1293,7 @@
 		<ingredient count="4800" id="5838" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1301,7 +1301,7 @@
 		<ingredient count="4800" id="5095" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1309,7 +1309,7 @@
 		<ingredient count="4800" id="5840" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1317,7 +1317,7 @@
 		<ingredient count="1200" id="5099" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1325,7 +1325,7 @@
 		<ingredient count="1200" id="5842" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1333,7 +1333,7 @@
 		<ingredient count="1200" id="5100" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1341,7 +1341,7 @@
 		<ingredient count="1200" id="5844" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1349,7 +1349,7 @@
 		<ingredient count="960" id="5105" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1357,7 +1357,7 @@
 		<ingredient count="960" id="5846" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1365,7 +1365,7 @@
 		<ingredient count="600" id="5115" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1373,7 +1373,7 @@
 		<ingredient count="600" id="5853" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1381,7 +1381,7 @@
 		<ingredient count="480" id="5122" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1389,7 +1389,7 @@
 		<ingredient count="480" id="5855" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1397,7 +1397,7 @@
 		<ingredient count="240" id="5120" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1405,7 +1405,7 @@
 		<ingredient count="240" id="5857" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1669,7 +1669,7 @@
 		<ingredient count="180" id="5098" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1677,7 +1677,7 @@
 		<ingredient count="180" id="5839" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1685,7 +1685,7 @@
 		<ingredient count="90" id="5097" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1693,7 +1693,7 @@
 		<ingredient count="90" id="5841" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1701,7 +1701,7 @@
 		<ingredient count="30" id="5101" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1709,7 +1709,7 @@
 		<ingredient count="30" id="5843" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1717,7 +1717,7 @@
 		<ingredient count="45" id="5108" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1725,7 +1725,7 @@
 		<ingredient count="45" id="5845" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1733,7 +1733,7 @@
 		<ingredient count="18" id="5107" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1741,7 +1741,7 @@
 		<ingredient count="18" id="5847" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1749,7 +1749,7 @@
 		<ingredient count="18" id="5117" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1757,7 +1757,7 @@
 		<ingredient count="18" id="5854" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1765,7 +1765,7 @@
 		<ingredient count="12" id="5124" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1773,7 +1773,7 @@
 		<ingredient count="12" id="5856" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1781,7 +1781,7 @@
 		<ingredient count="7" id="6555" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1789,7 +1789,7 @@
 		<ingredient count="7" id="6562" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1797,7 +1797,7 @@
 		<ingredient count="300" id="5098" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1805,7 +1805,7 @@
 		<ingredient count="300" id="5839" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1813,7 +1813,7 @@
 		<ingredient count="150" id="5097" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1821,7 +1821,7 @@
 		<ingredient count="150" id="5841" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1829,7 +1829,7 @@
 		<ingredient count="50" id="5101" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1837,7 +1837,7 @@
 		<ingredient count="50" id="5843" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1845,7 +1845,7 @@
 		<ingredient count="75" id="5108" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1853,7 +1853,7 @@
 		<ingredient count="75" id="5845" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1861,7 +1861,7 @@
 		<ingredient count="30" id="5107" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1869,7 +1869,7 @@
 		<ingredient count="30" id="5847" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1877,7 +1877,7 @@
 		<ingredient count="30" id="5117" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1885,7 +1885,7 @@
 		<ingredient count="30" id="5854" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1893,7 +1893,7 @@
 		<ingredient count="20" id="5124" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1901,7 +1901,7 @@
 		<ingredient count="20" id="5856" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1909,7 +1909,7 @@
 		<ingredient count="12" id="6555" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1917,7 +1917,7 @@
 		<ingredient count="12" id="6562" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1925,7 +1925,7 @@
 		<ingredient count="500" id="5098" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1933,7 +1933,7 @@
 		<ingredient count="500" id="5839" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1941,7 +1941,7 @@
 		<ingredient count="250" id="5097" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1949,7 +1949,7 @@
 		<ingredient count="250" id="5841" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1957,7 +1957,7 @@
 		<ingredient count="83" id="5101" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1965,7 +1965,7 @@
 		<ingredient count="83" id="5843" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1973,7 +1973,7 @@
 		<ingredient count="125" id="5108" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1981,7 +1981,7 @@
 		<ingredient count="125" id="5845" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1989,7 +1989,7 @@
 		<ingredient count="50" id="5107" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1997,7 +1997,7 @@
 		<ingredient count="50" id="5847" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2005,7 +2005,7 @@
 		<ingredient count="50" id="5117" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2013,7 +2013,7 @@
 		<ingredient count="50" id="5854" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2021,7 +2021,7 @@
 		<ingredient count="33" id="5124" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2029,7 +2029,7 @@
 		<ingredient count="33" id="5856" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2037,7 +2037,7 @@
 		<ingredient count="20" id="6555" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2045,7 +2045,7 @@
 		<ingredient count="20" id="6562" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/350980002.xml b/L2J_DataPack_BETA/dist/game/data/multisell/350980002.xml
index 4dab99b2eec91e7e5c335f90b57f409400f4e8c7..936bcda91f42849f6a2b8e8db2a3077e5a155701 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/350980002.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/350980002.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Mature Blue Coda -->
 		<ingredient count="100" id="5097" />
@@ -293,7 +293,7 @@
 		<ingredient count="250" id="5099" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -301,7 +301,7 @@
 		<ingredient count="250" id="5842" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -309,7 +309,7 @@
 		<ingredient count="250" id="5100" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -317,7 +317,7 @@
 		<ingredient count="250" id="5844" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -325,7 +325,7 @@
 		<ingredient count="200" id="5105" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -333,7 +333,7 @@
 		<ingredient count="200" id="5846" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -341,7 +341,7 @@
 		<ingredient count="100" id="5112" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -349,7 +349,7 @@
 		<ingredient count="100" id="5848" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -357,7 +357,7 @@
 		<ingredient count="100" id="5114" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -365,7 +365,7 @@
 		<ingredient count="100" id="5850" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -373,7 +373,7 @@
 		<ingredient count="100" id="5121" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -381,7 +381,7 @@
 		<ingredient count="100" id="5852" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -389,7 +389,7 @@
 		<ingredient count="30" id="5099" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -397,7 +397,7 @@
 		<ingredient count="30" id="5842" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -405,7 +405,7 @@
 		<ingredient count="30" id="5100" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -413,7 +413,7 @@
 		<ingredient count="30" id="5844" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -421,7 +421,7 @@
 		<ingredient count="24" id="5105" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -429,7 +429,7 @@
 		<ingredient count="24" id="5846" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -437,7 +437,7 @@
 		<ingredient count="12" id="5112" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -445,7 +445,7 @@
 		<ingredient count="12" id="5848" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -453,7 +453,7 @@
 		<ingredient count="12" id="5114" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -461,7 +461,7 @@
 		<ingredient count="12" id="5850" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -469,7 +469,7 @@
 		<ingredient count="12" id="5121" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -477,7 +477,7 @@
 		<ingredient count="12" id="5852" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -485,7 +485,7 @@
 		<ingredient count="550" id="5099" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -493,7 +493,7 @@
 		<ingredient count="550" id="5842" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -501,7 +501,7 @@
 		<ingredient count="550" id="5100" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -509,7 +509,7 @@
 		<ingredient count="550" id="5844" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -517,7 +517,7 @@
 		<ingredient count="440" id="5105" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -525,7 +525,7 @@
 		<ingredient count="440" id="5846" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -533,7 +533,7 @@
 		<ingredient count="220" id="5112" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -541,7 +541,7 @@
 		<ingredient count="220" id="5848" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -549,7 +549,7 @@
 		<ingredient count="220" id="5114" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -557,7 +557,7 @@
 		<ingredient count="220" id="5850" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -565,7 +565,7 @@
 		<ingredient count="220" id="5121" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -573,7 +573,7 @@
 		<ingredient count="220" id="5852" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -581,7 +581,7 @@
 		<ingredient count="75" id="5099" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -589,7 +589,7 @@
 		<ingredient count="75" id="5842" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -597,7 +597,7 @@
 		<ingredient count="75" id="5100" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -605,7 +605,7 @@
 		<ingredient count="75" id="5844" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -613,7 +613,7 @@
 		<ingredient count="60" id="5105" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -621,7 +621,7 @@
 		<ingredient count="60" id="5846" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -629,7 +629,7 @@
 		<ingredient count="30" id="5112" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -637,7 +637,7 @@
 		<ingredient count="30" id="5848" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -645,7 +645,7 @@
 		<ingredient count="30" id="5114" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -653,7 +653,7 @@
 		<ingredient count="30" id="5850" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -661,7 +661,7 @@
 		<ingredient count="30" id="5121" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -669,7 +669,7 @@
 		<ingredient count="30" id="5852" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -677,7 +677,7 @@
 		<ingredient count="2500" id="5099" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -685,7 +685,7 @@
 		<ingredient count="2500" id="5842" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -693,7 +693,7 @@
 		<ingredient count="2500" id="5100" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -701,7 +701,7 @@
 		<ingredient count="2500" id="5844" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -709,7 +709,7 @@
 		<ingredient count="2000" id="5105" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -717,7 +717,7 @@
 		<ingredient count="2000" id="5846" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -725,7 +725,7 @@
 		<ingredient count="1000" id="5112" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -733,7 +733,7 @@
 		<ingredient count="1000" id="5848" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -741,7 +741,7 @@
 		<ingredient count="1000" id="5114" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -749,7 +749,7 @@
 		<ingredient count="1000" id="5850" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -757,7 +757,7 @@
 		<ingredient count="1000" id="5121" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -765,7 +765,7 @@
 		<ingredient count="1000" id="5852" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -773,7 +773,7 @@
 		<ingredient count="400" id="5099" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -781,7 +781,7 @@
 		<ingredient count="400" id="5842" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -789,7 +789,7 @@
 		<ingredient count="400" id="5100" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -797,7 +797,7 @@
 		<ingredient count="400" id="5844" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -805,7 +805,7 @@
 		<ingredient count="320" id="5105" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -813,7 +813,7 @@
 		<ingredient count="320" id="5846" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -821,7 +821,7 @@
 		<ingredient count="160" id="5112" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -829,7 +829,7 @@
 		<ingredient count="160" id="5848" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -837,7 +837,7 @@
 		<ingredient count="160" id="5114" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -845,7 +845,7 @@
 		<ingredient count="160" id="5850" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -853,7 +853,7 @@
 		<ingredient count="160" id="5121" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -861,7 +861,7 @@
 		<ingredient count="160" id="5852" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -869,7 +869,7 @@
 		<ingredient count="9000" id="5099" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -877,7 +877,7 @@
 		<ingredient count="9000" id="5842" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -885,7 +885,7 @@
 		<ingredient count="9000" id="5100" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -893,7 +893,7 @@
 		<ingredient count="9000" id="5844" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -901,7 +901,7 @@
 		<ingredient count="7200" id="5105" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -909,7 +909,7 @@
 		<ingredient count="7200" id="5846" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -917,7 +917,7 @@
 		<ingredient count="3600" id="5112" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -925,7 +925,7 @@
 		<ingredient count="3600" id="5848" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -933,7 +933,7 @@
 		<ingredient count="3600" id="5114" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -941,7 +941,7 @@
 		<ingredient count="3600" id="5850" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -949,7 +949,7 @@
 		<ingredient count="3600" id="5121" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -957,7 +957,7 @@
 		<ingredient count="3600" id="5852" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -965,7 +965,7 @@
 		<ingredient count="1200" id="5099" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -973,7 +973,7 @@
 		<ingredient count="1200" id="5842" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -981,7 +981,7 @@
 		<ingredient count="1200" id="5100" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -989,7 +989,7 @@
 		<ingredient count="1200" id="5844" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -997,7 +997,7 @@
 		<ingredient count="960" id="5105" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1005,7 +1005,7 @@
 		<ingredient count="960" id="5846" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1013,7 +1013,7 @@
 		<ingredient count="480" id="5112" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1021,7 +1021,7 @@
 		<ingredient count="480" id="5848" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1029,7 +1029,7 @@
 		<ingredient count="480" id="5114" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1037,7 +1037,7 @@
 		<ingredient count="480" id="5850" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1045,7 +1045,7 @@
 		<ingredient count="480" id="5121" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1053,7 +1053,7 @@
 		<ingredient count="480" id="5852" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1253,7 +1253,7 @@
 		<ingredient count="90" id="5097" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1261,7 +1261,7 @@
 		<ingredient count="90" id="5841" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1269,7 +1269,7 @@
 		<ingredient count="30" id="5101" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1277,7 +1277,7 @@
 		<ingredient count="30" id="5843" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1285,7 +1285,7 @@
 		<ingredient count="45" id="5108" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1293,7 +1293,7 @@
 		<ingredient count="45" id="5845" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1301,7 +1301,7 @@
 		<ingredient count="18" id="5107" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1309,7 +1309,7 @@
 		<ingredient count="18" id="5847" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1317,7 +1317,7 @@
 		<ingredient count="18" id="5109" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1325,7 +1325,7 @@
 		<ingredient count="18" id="5849" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1333,7 +1333,7 @@
 		<ingredient count="22" id="5118" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1341,7 +1341,7 @@
 		<ingredient count="22" id="5851" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1349,7 +1349,7 @@
 		<ingredient count="150" id="5097" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1357,7 +1357,7 @@
 		<ingredient count="150" id="5841" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1365,7 +1365,7 @@
 		<ingredient count="50" id="5101" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1373,7 +1373,7 @@
 		<ingredient count="50" id="5843" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1381,7 +1381,7 @@
 		<ingredient count="75" id="5108" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1389,7 +1389,7 @@
 		<ingredient count="75" id="5845" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1397,7 +1397,7 @@
 		<ingredient count="30" id="5107" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1405,7 +1405,7 @@
 		<ingredient count="30" id="5847" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1413,7 +1413,7 @@
 		<ingredient count="30" id="5109" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1421,7 +1421,7 @@
 		<ingredient count="30" id="5849" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1429,7 +1429,7 @@
 		<ingredient count="38" id="5118" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1437,7 +1437,7 @@
 		<ingredient count="38" id="5851" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1445,7 +1445,7 @@
 		<ingredient count="250" id="5097" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1453,7 +1453,7 @@
 		<ingredient count="250" id="5841" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1461,7 +1461,7 @@
 		<ingredient count="83" id="5101" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1469,7 +1469,7 @@
 		<ingredient count="83" id="5843" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1477,7 +1477,7 @@
 		<ingredient count="125" id="5108" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1485,7 +1485,7 @@
 		<ingredient count="125" id="5845" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1493,7 +1493,7 @@
 		<ingredient count="50" id="5107" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1501,7 +1501,7 @@
 		<ingredient count="50" id="5847" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1509,7 +1509,7 @@
 		<ingredient count="50" id="5109" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1517,7 +1517,7 @@
 		<ingredient count="50" id="5849" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1525,7 +1525,7 @@
 		<ingredient count="62" id="5118" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1533,7 +1533,7 @@
 		<ingredient count="62" id="5851" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/350980003.xml b/L2J_DataPack_BETA/dist/game/data/multisell/350980003.xml
index 5848bc18c8b7bf8654b7fa71cb3e7e51d1a4b112..2bb58b323d05a0a9f37e237bad3e23ed48aaa5d4 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/350980003.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/350980003.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Mature Red Cobol -->
 		<ingredient count="50" id="5108" />
@@ -389,7 +389,7 @@
 		<ingredient count="200" id="5105" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -397,7 +397,7 @@
 		<ingredient count="200" id="5846" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -405,7 +405,7 @@
 		<ingredient count="100" id="5112" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -413,7 +413,7 @@
 		<ingredient count="100" id="5848" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -421,7 +421,7 @@
 		<ingredient count="100" id="5114" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -429,7 +429,7 @@
 		<ingredient count="100" id="5850" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -437,7 +437,7 @@
 		<ingredient count="100" id="5121" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -445,7 +445,7 @@
 		<ingredient count="100" id="5852" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -453,7 +453,7 @@
 		<ingredient count="100" id="5117" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -461,7 +461,7 @@
 		<ingredient count="100" id="5854" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -469,7 +469,7 @@
 		<ingredient count="67" id="5124" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -477,7 +477,7 @@
 		<ingredient count="67" id="5856" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -485,7 +485,7 @@
 		<ingredient count="50" id="5120" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -493,7 +493,7 @@
 		<ingredient count="50" id="5857" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -501,7 +501,7 @@
 		<ingredient count="33" id="6556" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -509,7 +509,7 @@
 		<ingredient count="33" id="6563" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -517,7 +517,7 @@
 		<ingredient count="24" id="5105" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -525,7 +525,7 @@
 		<ingredient count="24" id="5846" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -533,7 +533,7 @@
 		<ingredient count="12" id="5112" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -541,7 +541,7 @@
 		<ingredient count="12" id="5848" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -549,7 +549,7 @@
 		<ingredient count="12" id="5114" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -557,7 +557,7 @@
 		<ingredient count="12" id="5850" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -565,7 +565,7 @@
 		<ingredient count="12" id="5121" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -573,7 +573,7 @@
 		<ingredient count="12" id="5852" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -581,7 +581,7 @@
 		<ingredient count="12" id="5117" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -589,7 +589,7 @@
 		<ingredient count="12" id="5854" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -597,7 +597,7 @@
 		<ingredient count="8" id="5124" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -605,7 +605,7 @@
 		<ingredient count="8" id="5856" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -613,7 +613,7 @@
 		<ingredient count="6" id="5120" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -621,7 +621,7 @@
 		<ingredient count="6" id="5857" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -629,7 +629,7 @@
 		<ingredient count="4" id="6556" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -637,7 +637,7 @@
 		<ingredient count="4" id="6563" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -645,7 +645,7 @@
 		<ingredient count="440" id="5105" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -653,7 +653,7 @@
 		<ingredient count="440" id="5846" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -661,7 +661,7 @@
 		<ingredient count="220" id="5112" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -669,7 +669,7 @@
 		<ingredient count="220" id="5848" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -677,7 +677,7 @@
 		<ingredient count="220" id="5114" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -685,7 +685,7 @@
 		<ingredient count="220" id="5850" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -693,7 +693,7 @@
 		<ingredient count="220" id="5121" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -701,7 +701,7 @@
 		<ingredient count="220" id="5852" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -709,7 +709,7 @@
 		<ingredient count="220" id="5117" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -717,7 +717,7 @@
 		<ingredient count="220" id="5854" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -725,7 +725,7 @@
 		<ingredient count="147" id="5124" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -733,7 +733,7 @@
 		<ingredient count="147" id="5856" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -741,7 +741,7 @@
 		<ingredient count="110" id="5120" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -749,7 +749,7 @@
 		<ingredient count="110" id="5857" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -757,7 +757,7 @@
 		<ingredient count="73" id="6556" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -765,7 +765,7 @@
 		<ingredient count="73" id="6563" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -773,7 +773,7 @@
 		<ingredient count="60" id="5105" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -781,7 +781,7 @@
 		<ingredient count="60" id="5846" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -789,7 +789,7 @@
 		<ingredient count="30" id="5112" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -797,7 +797,7 @@
 		<ingredient count="30" id="5848" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -805,7 +805,7 @@
 		<ingredient count="30" id="5114" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -813,7 +813,7 @@
 		<ingredient count="30" id="5850" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -821,7 +821,7 @@
 		<ingredient count="30" id="5121" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -829,7 +829,7 @@
 		<ingredient count="30" id="5852" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -837,7 +837,7 @@
 		<ingredient count="30" id="5117" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -845,7 +845,7 @@
 		<ingredient count="30" id="5854" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -853,7 +853,7 @@
 		<ingredient count="20" id="5124" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -861,7 +861,7 @@
 		<ingredient count="20" id="5856" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -869,7 +869,7 @@
 		<ingredient count="15" id="5120" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -877,7 +877,7 @@
 		<ingredient count="15" id="5857" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -885,7 +885,7 @@
 		<ingredient count="10" id="6556" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -893,7 +893,7 @@
 		<ingredient count="10" id="6563" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -901,7 +901,7 @@
 		<ingredient count="2000" id="5105" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -909,7 +909,7 @@
 		<ingredient count="2000" id="5846" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -917,7 +917,7 @@
 		<ingredient count="1000" id="5112" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -925,7 +925,7 @@
 		<ingredient count="1000" id="5848" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -933,7 +933,7 @@
 		<ingredient count="1000" id="5114" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -941,7 +941,7 @@
 		<ingredient count="1000" id="5850" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -949,7 +949,7 @@
 		<ingredient count="1000" id="5121" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -957,7 +957,7 @@
 		<ingredient count="1000" id="5852" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -965,7 +965,7 @@
 		<ingredient count="1000" id="5117" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -973,7 +973,7 @@
 		<ingredient count="1000" id="5854" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -981,7 +981,7 @@
 		<ingredient count="667" id="5124" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -989,7 +989,7 @@
 		<ingredient count="667" id="5856" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -997,7 +997,7 @@
 		<ingredient count="500" id="5120" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1005,7 +1005,7 @@
 		<ingredient count="500" id="5857" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1013,7 +1013,7 @@
 		<ingredient count="333" id="6556" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1021,7 +1021,7 @@
 		<ingredient count="333" id="6563" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1029,7 +1029,7 @@
 		<ingredient count="320" id="5105" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1037,7 +1037,7 @@
 		<ingredient count="320" id="5846" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1045,7 +1045,7 @@
 		<ingredient count="160" id="5112" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1053,7 +1053,7 @@
 		<ingredient count="160" id="5848" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1061,7 +1061,7 @@
 		<ingredient count="160" id="5114" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1069,7 +1069,7 @@
 		<ingredient count="160" id="5850" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1077,7 +1077,7 @@
 		<ingredient count="160" id="5121" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1085,7 +1085,7 @@
 		<ingredient count="160" id="5852" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1093,7 +1093,7 @@
 		<ingredient count="160" id="5117" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1101,7 +1101,7 @@
 		<ingredient count="160" id="5854" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1109,7 +1109,7 @@
 		<ingredient count="107" id="5124" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1117,7 +1117,7 @@
 		<ingredient count="107" id="5856" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1125,7 +1125,7 @@
 		<ingredient count="80" id="5120" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1133,7 +1133,7 @@
 		<ingredient count="80" id="5857" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1141,7 +1141,7 @@
 		<ingredient count="53" id="6556" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1149,7 +1149,7 @@
 		<ingredient count="53" id="6563" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1157,7 +1157,7 @@
 		<ingredient count="7200" id="5105" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1165,7 +1165,7 @@
 		<ingredient count="7200" id="5846" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1173,7 +1173,7 @@
 		<ingredient count="3600" id="5112" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1181,7 +1181,7 @@
 		<ingredient count="3600" id="5848" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1189,7 +1189,7 @@
 		<ingredient count="3600" id="5114" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1197,7 +1197,7 @@
 		<ingredient count="3600" id="5850" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1205,7 +1205,7 @@
 		<ingredient count="3600" id="5121" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1213,7 +1213,7 @@
 		<ingredient count="3600" id="5852" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1221,7 +1221,7 @@
 		<ingredient count="3600" id="5117" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1229,7 +1229,7 @@
 		<ingredient count="3600" id="5854" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1237,7 +1237,7 @@
 		<ingredient count="2400" id="5124" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1245,7 +1245,7 @@
 		<ingredient count="2400" id="5856" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1253,7 +1253,7 @@
 		<ingredient count="1800" id="5120" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1261,7 +1261,7 @@
 		<ingredient count="1800" id="5857" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1269,7 +1269,7 @@
 		<ingredient count="1200" id="6556" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1277,7 +1277,7 @@
 		<ingredient count="1200" id="6563" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1285,7 +1285,7 @@
 		<ingredient count="960" id="5105" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1293,7 +1293,7 @@
 		<ingredient count="960" id="5846" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1301,7 +1301,7 @@
 		<ingredient count="480" id="5112" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1309,7 +1309,7 @@
 		<ingredient count="480" id="5848" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1317,7 +1317,7 @@
 		<ingredient count="480" id="5114" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1325,7 +1325,7 @@
 		<ingredient count="480" id="5850" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1333,7 +1333,7 @@
 		<ingredient count="480" id="5121" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1341,7 +1341,7 @@
 		<ingredient count="480" id="5852" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1349,7 +1349,7 @@
 		<ingredient count="480" id="5117" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1357,7 +1357,7 @@
 		<ingredient count="480" id="5854" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1365,7 +1365,7 @@
 		<ingredient count="320" id="5124" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1373,7 +1373,7 @@
 		<ingredient count="320" id="5856" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1381,7 +1381,7 @@
 		<ingredient count="240" id="5120" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1389,7 +1389,7 @@
 		<ingredient count="240" id="5857" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1397,7 +1397,7 @@
 		<ingredient count="160" id="6556" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1405,7 +1405,7 @@
 		<ingredient count="160" id="6563" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1669,7 +1669,7 @@
 		<ingredient count="45" id="5108" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1677,7 +1677,7 @@
 		<ingredient count="45" id="5845" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1685,7 +1685,7 @@
 		<ingredient count="18" id="5107" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1693,7 +1693,7 @@
 		<ingredient count="18" id="5847" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1701,7 +1701,7 @@
 		<ingredient count="18" id="5109" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1709,7 +1709,7 @@
 		<ingredient count="18" id="5849" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1717,7 +1717,7 @@
 		<ingredient count="22" id="5118" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1725,7 +1725,7 @@
 		<ingredient count="22" id="5851" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1733,7 +1733,7 @@
 		<ingredient count="22" id="5115" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1741,7 +1741,7 @@
 		<ingredient count="22" id="5853" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1749,7 +1749,7 @@
 		<ingredient count="18" id="5122" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1757,7 +1757,7 @@
 		<ingredient count="18" id="5855" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1765,7 +1765,7 @@
 		<ingredient count="7" id="6555" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1773,7 +1773,7 @@
 		<ingredient count="7" id="6562" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1781,7 +1781,7 @@
 		<ingredient count="5" id="6557" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1789,7 +1789,7 @@
 		<ingredient count="5" id="6564" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1797,7 +1797,7 @@
 		<ingredient count="75" id="5108" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1805,7 +1805,7 @@
 		<ingredient count="75" id="5845" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1813,7 +1813,7 @@
 		<ingredient count="30" id="5107" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1821,7 +1821,7 @@
 		<ingredient count="30" id="5847" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1829,7 +1829,7 @@
 		<ingredient count="30" id="5109" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1837,7 +1837,7 @@
 		<ingredient count="30" id="5849" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1845,7 +1845,7 @@
 		<ingredient count="38" id="5118" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1853,7 +1853,7 @@
 		<ingredient count="38" id="5851" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1861,7 +1861,7 @@
 		<ingredient count="38" id="5115" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1869,7 +1869,7 @@
 		<ingredient count="38" id="5853" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1877,7 +1877,7 @@
 		<ingredient count="30" id="5122" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1885,7 +1885,7 @@
 		<ingredient count="30" id="5855" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1893,7 +1893,7 @@
 		<ingredient count="12" id="6555" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1901,7 +1901,7 @@
 		<ingredient count="12" id="6562" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1909,7 +1909,7 @@
 		<ingredient count="9" id="6557" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1917,7 +1917,7 @@
 		<ingredient count="9" id="6564" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1925,7 +1925,7 @@
 		<ingredient count="125" id="5108" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1933,7 +1933,7 @@
 		<ingredient count="125" id="5845" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1941,7 +1941,7 @@
 		<ingredient count="50" id="5107" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1949,7 +1949,7 @@
 		<ingredient count="50" id="5847" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1957,7 +1957,7 @@
 		<ingredient count="50" id="5109" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1965,7 +1965,7 @@
 		<ingredient count="50" id="5849" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1973,7 +1973,7 @@
 		<ingredient count="62" id="5118" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1981,7 +1981,7 @@
 		<ingredient count="62" id="5851" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1989,7 +1989,7 @@
 		<ingredient count="62" id="5115" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1997,7 +1997,7 @@
 		<ingredient count="62" id="5853" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2005,7 +2005,7 @@
 		<ingredient count="50" id="5122" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2013,7 +2013,7 @@
 		<ingredient count="50" id="5855" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2021,7 +2021,7 @@
 		<ingredient count="20" id="6555" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2029,7 +2029,7 @@
 		<ingredient count="20" id="6562" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2037,7 +2037,7 @@
 		<ingredient count="14" id="6557" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2045,7 +2045,7 @@
 		<ingredient count="14" id="6564" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/350980004.xml b/L2J_DataPack_BETA/dist/game/data/multisell/350980004.xml
index 6f7fe36aa3dbfeb50cf035c43676ea89fcb4c470..2e35c90e4f6e4f10d07c8e95f1b61c2bf90dc1bb 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/350980004.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/350980004.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Mature Red Coda -->
 		<ingredient count="200" id="5098" />
@@ -437,7 +437,7 @@
 		<ingredient count="1000" id="5103" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -445,7 +445,7 @@
 		<ingredient count="1000" id="5838" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -453,7 +453,7 @@
 		<ingredient count="500" id="5097" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -461,7 +461,7 @@
 		<ingredient count="500" id="5841" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -469,7 +469,7 @@
 		<ingredient count="200" id="5105" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -477,7 +477,7 @@
 		<ingredient count="200" id="5846" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -485,7 +485,7 @@
 		<ingredient count="100" id="5112" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -493,7 +493,7 @@
 		<ingredient count="100" id="5848" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -501,7 +501,7 @@
 		<ingredient count="100" id="5114" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -509,7 +509,7 @@
 		<ingredient count="100" id="5850" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -517,7 +517,7 @@
 		<ingredient count="100" id="5121" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -525,7 +525,7 @@
 		<ingredient count="100" id="5852" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -533,7 +533,7 @@
 		<ingredient count="100" id="5117" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -541,7 +541,7 @@
 		<ingredient count="100" id="5854" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -549,7 +549,7 @@
 		<ingredient count="25" id="6558" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -557,7 +557,7 @@
 		<ingredient count="25" id="6565" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -565,7 +565,7 @@
 		<ingredient count="22" id="6559" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -573,7 +573,7 @@
 		<ingredient count="22" id="6566" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -581,7 +581,7 @@
 		<ingredient count="120" id="5103" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -589,7 +589,7 @@
 		<ingredient count="120" id="5838" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -597,7 +597,7 @@
 		<ingredient count="60" id="5097" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -605,7 +605,7 @@
 		<ingredient count="60" id="5841" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -613,7 +613,7 @@
 		<ingredient count="24" id="5105" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -621,7 +621,7 @@
 		<ingredient count="24" id="5846" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -629,7 +629,7 @@
 		<ingredient count="12" id="5112" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -637,7 +637,7 @@
 		<ingredient count="12" id="5848" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -645,7 +645,7 @@
 		<ingredient count="12" id="5114" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -653,7 +653,7 @@
 		<ingredient count="12" id="5850" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -661,7 +661,7 @@
 		<ingredient count="12" id="5121" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -669,7 +669,7 @@
 		<ingredient count="12" id="5852" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -677,7 +677,7 @@
 		<ingredient count="12" id="5117" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -685,7 +685,7 @@
 		<ingredient count="12" id="5854" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -693,7 +693,7 @@
 		<ingredient count="3" id="6558" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -701,7 +701,7 @@
 		<ingredient count="3" id="6565" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -709,7 +709,7 @@
 		<ingredient count="3" id="6559" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -717,7 +717,7 @@
 		<ingredient count="3" id="6566" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -725,7 +725,7 @@
 		<ingredient count="2200" id="5103" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -733,7 +733,7 @@
 		<ingredient count="2200" id="5838" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -741,7 +741,7 @@
 		<ingredient count="1100" id="5097" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -749,7 +749,7 @@
 		<ingredient count="1100" id="5841" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -757,7 +757,7 @@
 		<ingredient count="440" id="5105" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -765,7 +765,7 @@
 		<ingredient count="440" id="5846" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -773,7 +773,7 @@
 		<ingredient count="220" id="5112" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -781,7 +781,7 @@
 		<ingredient count="220" id="5848" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -789,7 +789,7 @@
 		<ingredient count="220" id="5114" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -797,7 +797,7 @@
 		<ingredient count="220" id="5850" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -805,7 +805,7 @@
 		<ingredient count="220" id="5121" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -813,7 +813,7 @@
 		<ingredient count="220" id="5852" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -821,7 +821,7 @@
 		<ingredient count="220" id="5117" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -829,7 +829,7 @@
 		<ingredient count="220" id="5854" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -837,7 +837,7 @@
 		<ingredient count="55" id="6558" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -845,7 +845,7 @@
 		<ingredient count="55" id="6565" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -853,7 +853,7 @@
 		<ingredient count="49" id="6559" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -861,7 +861,7 @@
 		<ingredient count="49" id="6566" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -869,7 +869,7 @@
 		<ingredient count="300" id="5103" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -877,7 +877,7 @@
 		<ingredient count="300" id="5838" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -885,7 +885,7 @@
 		<ingredient count="150" id="5097" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -893,7 +893,7 @@
 		<ingredient count="150" id="5841" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -901,7 +901,7 @@
 		<ingredient count="60" id="5105" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -909,7 +909,7 @@
 		<ingredient count="60" id="5846" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -917,7 +917,7 @@
 		<ingredient count="30" id="5112" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -925,7 +925,7 @@
 		<ingredient count="30" id="5848" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -933,7 +933,7 @@
 		<ingredient count="30" id="5114" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -941,7 +941,7 @@
 		<ingredient count="30" id="5850" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -949,7 +949,7 @@
 		<ingredient count="30" id="5121" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -957,7 +957,7 @@
 		<ingredient count="30" id="5852" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -965,7 +965,7 @@
 		<ingredient count="30" id="5117" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -973,7 +973,7 @@
 		<ingredient count="30" id="5854" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -981,7 +981,7 @@
 		<ingredient count="8" id="6558" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -989,7 +989,7 @@
 		<ingredient count="8" id="6565" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -997,7 +997,7 @@
 		<ingredient count="7" id="6559" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -1005,7 +1005,7 @@
 		<ingredient count="7" id="6566" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -1013,7 +1013,7 @@
 		<ingredient count="10000" id="5103" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1021,7 +1021,7 @@
 		<ingredient count="10000" id="5838" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1029,7 +1029,7 @@
 		<ingredient count="5000" id="5097" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1037,7 +1037,7 @@
 		<ingredient count="5000" id="5841" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1045,7 +1045,7 @@
 		<ingredient count="2000" id="5105" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1053,7 +1053,7 @@
 		<ingredient count="2000" id="5846" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1061,7 +1061,7 @@
 		<ingredient count="1000" id="5112" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1069,7 +1069,7 @@
 		<ingredient count="1000" id="5848" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1077,7 +1077,7 @@
 		<ingredient count="1000" id="5114" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1085,7 +1085,7 @@
 		<ingredient count="1000" id="5850" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1093,7 +1093,7 @@
 		<ingredient count="1000" id="5121" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1101,7 +1101,7 @@
 		<ingredient count="1000" id="5852" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1109,7 +1109,7 @@
 		<ingredient count="1000" id="5117" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1117,7 +1117,7 @@
 		<ingredient count="1000" id="5854" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1125,7 +1125,7 @@
 		<ingredient count="250" id="6558" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1133,7 +1133,7 @@
 		<ingredient count="250" id="6565" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1141,7 +1141,7 @@
 		<ingredient count="222" id="6559" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1149,7 +1149,7 @@
 		<ingredient count="222" id="6566" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1157,7 +1157,7 @@
 		<ingredient count="1600" id="5103" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1165,7 +1165,7 @@
 		<ingredient count="1600" id="5838" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1173,7 +1173,7 @@
 		<ingredient count="800" id="5097" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1181,7 +1181,7 @@
 		<ingredient count="800" id="5841" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1189,7 +1189,7 @@
 		<ingredient count="320" id="5105" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1197,7 +1197,7 @@
 		<ingredient count="320" id="5846" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1205,7 +1205,7 @@
 		<ingredient count="160" id="5112" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1213,7 +1213,7 @@
 		<ingredient count="160" id="5848" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1221,7 +1221,7 @@
 		<ingredient count="160" id="5114" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1229,7 +1229,7 @@
 		<ingredient count="160" id="5850" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1237,7 +1237,7 @@
 		<ingredient count="160" id="5121" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1245,7 +1245,7 @@
 		<ingredient count="160" id="5852" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1253,7 +1253,7 @@
 		<ingredient count="160" id="5117" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1261,7 +1261,7 @@
 		<ingredient count="160" id="5854" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1269,7 +1269,7 @@
 		<ingredient count="40" id="6558" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1277,7 +1277,7 @@
 		<ingredient count="40" id="6565" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1285,7 +1285,7 @@
 		<ingredient count="36" id="6559" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1293,7 +1293,7 @@
 		<ingredient count="36" id="6566" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1301,7 +1301,7 @@
 		<ingredient count="36000" id="5103" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1309,7 +1309,7 @@
 		<ingredient count="36000" id="5838" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1317,7 +1317,7 @@
 		<ingredient count="18000" id="5097" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1325,7 +1325,7 @@
 		<ingredient count="18000" id="5841" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1333,7 +1333,7 @@
 		<ingredient count="7200" id="5105" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1341,7 +1341,7 @@
 		<ingredient count="7200" id="5846" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1349,7 +1349,7 @@
 		<ingredient count="3600" id="5112" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1357,7 +1357,7 @@
 		<ingredient count="3600" id="5848" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1365,7 +1365,7 @@
 		<ingredient count="3600" id="5114" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1373,7 +1373,7 @@
 		<ingredient count="3600" id="5850" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1381,7 +1381,7 @@
 		<ingredient count="3600" id="5121" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1389,7 +1389,7 @@
 		<ingredient count="3600" id="5852" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1397,7 +1397,7 @@
 		<ingredient count="3600" id="5117" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1405,7 +1405,7 @@
 		<ingredient count="3600" id="5854" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1413,7 +1413,7 @@
 		<ingredient count="900" id="6558" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1421,7 +1421,7 @@
 		<ingredient count="900" id="6565" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1429,7 +1429,7 @@
 		<ingredient count="800" id="6559" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1437,7 +1437,7 @@
 		<ingredient count="800" id="6566" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1445,7 +1445,7 @@
 		<ingredient count="4800" id="5103" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1453,7 +1453,7 @@
 		<ingredient count="4800" id="5838" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1461,7 +1461,7 @@
 		<ingredient count="2400" id="5097" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1469,7 +1469,7 @@
 		<ingredient count="2400" id="5841" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1477,7 +1477,7 @@
 		<ingredient count="960" id="5105" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1485,7 +1485,7 @@
 		<ingredient count="960" id="5846" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1493,7 +1493,7 @@
 		<ingredient count="480" id="5112" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1501,7 +1501,7 @@
 		<ingredient count="480" id="5848" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1509,7 +1509,7 @@
 		<ingredient count="480" id="5114" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1517,7 +1517,7 @@
 		<ingredient count="480" id="5850" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1525,7 +1525,7 @@
 		<ingredient count="480" id="5121" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1533,7 +1533,7 @@
 		<ingredient count="480" id="5852" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1541,7 +1541,7 @@
 		<ingredient count="480" id="5117" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1549,7 +1549,7 @@
 		<ingredient count="480" id="5854" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1557,7 +1557,7 @@
 		<ingredient count="120" id="6558" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1565,7 +1565,7 @@
 		<ingredient count="120" id="6565" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1573,7 +1573,7 @@
 		<ingredient count="107" id="6559" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1581,7 +1581,7 @@
 		<ingredient count="107" id="6566" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1877,7 +1877,7 @@
 		<ingredient count="180" id="5098" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1885,7 +1885,7 @@
 		<ingredient count="180" id="5839" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1893,7 +1893,7 @@
 		<ingredient count="180" id="5095" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1901,7 +1901,7 @@
 		<ingredient count="180" id="5840" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1909,7 +1909,7 @@
 		<ingredient count="45" id="5099" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1917,7 +1917,7 @@
 		<ingredient count="45" id="5842" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1925,7 +1925,7 @@
 		<ingredient count="18" id="5107" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1933,7 +1933,7 @@
 		<ingredient count="18" id="5847" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1941,7 +1941,7 @@
 		<ingredient count="18" id="5109" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1949,7 +1949,7 @@
 		<ingredient count="18" id="5849" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1957,7 +1957,7 @@
 		<ingredient count="22" id="5118" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1965,7 +1965,7 @@
 		<ingredient count="22" id="5851" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1973,7 +1973,7 @@
 		<ingredient count="22" id="5115" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1981,7 +1981,7 @@
 		<ingredient count="22" id="5853" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1989,7 +1989,7 @@
 		<ingredient count="18" id="5122" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1997,7 +1997,7 @@
 		<ingredient count="18" id="5855" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2005,7 +2005,7 @@
 		<ingredient count="5" id="6557" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2013,7 +2013,7 @@
 		<ingredient count="5" id="6564" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2021,7 +2021,7 @@
 		<ingredient count="300" id="5098" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2029,7 +2029,7 @@
 		<ingredient count="300" id="5839" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2037,7 +2037,7 @@
 		<ingredient count="300" id="5095" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2045,7 +2045,7 @@
 		<ingredient count="300" id="5840" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2053,7 +2053,7 @@
 		<ingredient count="75" id="5099" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2061,7 +2061,7 @@
 		<ingredient count="75" id="5842" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2069,7 +2069,7 @@
 		<ingredient count="30" id="5107" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2077,7 +2077,7 @@
 		<ingredient count="30" id="5847" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2085,7 +2085,7 @@
 		<ingredient count="30" id="5109" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2093,7 +2093,7 @@
 		<ingredient count="30" id="5849" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2101,7 +2101,7 @@
 		<ingredient count="38" id="5118" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2109,7 +2109,7 @@
 		<ingredient count="38" id="5851" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2117,7 +2117,7 @@
 		<ingredient count="38" id="5115" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2125,7 +2125,7 @@
 		<ingredient count="38" id="5853" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2133,7 +2133,7 @@
 		<ingredient count="30" id="5122" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2141,7 +2141,7 @@
 		<ingredient count="30" id="5855" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2149,7 +2149,7 @@
 		<ingredient count="9" id="6557" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2157,7 +2157,7 @@
 		<ingredient count="9" id="6564" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2165,7 +2165,7 @@
 		<ingredient count="500" id="5098" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2173,7 +2173,7 @@
 		<ingredient count="500" id="5839" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2181,7 +2181,7 @@
 		<ingredient count="500" id="5095" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2189,7 +2189,7 @@
 		<ingredient count="500" id="5840" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2197,7 +2197,7 @@
 		<ingredient count="125" id="5099" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2205,7 +2205,7 @@
 		<ingredient count="125" id="5842" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2213,7 +2213,7 @@
 		<ingredient count="50" id="5107" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2221,7 +2221,7 @@
 		<ingredient count="50" id="5847" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2229,7 +2229,7 @@
 		<ingredient count="50" id="5109" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2237,7 +2237,7 @@
 		<ingredient count="50" id="5849" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2245,7 +2245,7 @@
 		<ingredient count="62" id="5118" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2253,7 +2253,7 @@
 		<ingredient count="62" id="5851" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2261,7 +2261,7 @@
 		<ingredient count="62" id="5115" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2269,7 +2269,7 @@
 		<ingredient count="62" id="5853" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2277,7 +2277,7 @@
 		<ingredient count="50" id="5122" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2285,7 +2285,7 @@
 		<ingredient count="50" id="5855" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2293,7 +2293,7 @@
 		<ingredient count="14" id="6557" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2301,7 +2301,7 @@
 		<ingredient count="14" id="6564" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/350980005.xml b/L2J_DataPack_BETA/dist/game/data/multisell/350980005.xml
index fb171818fad4907e788112cd5f32d68dd4bdda4d..2c919ff2f045ee1a7c2eddf97352e258ae0e5d1a 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/350980005.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/350980005.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Mature Red Coda -->
 		<ingredient count="200" id="5098" />
@@ -533,7 +533,7 @@
 		<ingredient count="1000" id="5103" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -541,7 +541,7 @@
 		<ingredient count="1000" id="5838" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -549,7 +549,7 @@
 		<ingredient count="500" id="5097" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -557,7 +557,7 @@
 		<ingredient count="500" id="5841" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -565,7 +565,7 @@
 		<ingredient count="100" id="5112" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -573,7 +573,7 @@
 		<ingredient count="100" id="5848" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -581,7 +581,7 @@
 		<ingredient count="100" id="5114" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -589,7 +589,7 @@
 		<ingredient count="100" id="5850" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -597,7 +597,7 @@
 		<ingredient count="100" id="5121" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -605,7 +605,7 @@
 		<ingredient count="100" id="5852" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -613,7 +613,7 @@
 		<ingredient count="100" id="5117" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -621,7 +621,7 @@
 		<ingredient count="100" id="5854" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -629,7 +629,7 @@
 		<ingredient count="67" id="5124" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -637,7 +637,7 @@
 		<ingredient count="67" id="5856" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -645,7 +645,7 @@
 		<ingredient count="50" id="5120" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -653,7 +653,7 @@
 		<ingredient count="50" id="5857" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -661,7 +661,7 @@
 		<ingredient count="29" id="6557" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -669,7 +669,7 @@
 		<ingredient count="29" id="6564" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -677,7 +677,7 @@
 		<ingredient count="25" id="6558" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -685,7 +685,7 @@
 		<ingredient count="25" id="6565" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -693,7 +693,7 @@
 		<ingredient count="120" id="5103" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -701,7 +701,7 @@
 		<ingredient count="120" id="5838" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -709,7 +709,7 @@
 		<ingredient count="60" id="5097" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -717,7 +717,7 @@
 		<ingredient count="60" id="5841" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -725,7 +725,7 @@
 		<ingredient count="12" id="5112" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -733,7 +733,7 @@
 		<ingredient count="12" id="5848" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -741,7 +741,7 @@
 		<ingredient count="12" id="5114" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -749,7 +749,7 @@
 		<ingredient count="12" id="5850" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -757,7 +757,7 @@
 		<ingredient count="12" id="5121" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -765,7 +765,7 @@
 		<ingredient count="12" id="5852" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -773,7 +773,7 @@
 		<ingredient count="12" id="5117" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -781,7 +781,7 @@
 		<ingredient count="12" id="5854" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -789,7 +789,7 @@
 		<ingredient count="8" id="5124" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -797,7 +797,7 @@
 		<ingredient count="8" id="5856" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -805,7 +805,7 @@
 		<ingredient count="6" id="5120" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -813,7 +813,7 @@
 		<ingredient count="6" id="5857" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -821,7 +821,7 @@
 		<ingredient count="3" id="6557" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -829,7 +829,7 @@
 		<ingredient count="3" id="6564" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -837,7 +837,7 @@
 		<ingredient count="3" id="6558" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -845,7 +845,7 @@
 		<ingredient count="3" id="6565" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -853,7 +853,7 @@
 		<ingredient count="2200" id="5103" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -861,7 +861,7 @@
 		<ingredient count="2200" id="5838" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -869,7 +869,7 @@
 		<ingredient count="1100" id="5097" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -877,7 +877,7 @@
 		<ingredient count="1100" id="5841" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -885,7 +885,7 @@
 		<ingredient count="220" id="5112" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -893,7 +893,7 @@
 		<ingredient count="220" id="5848" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -901,7 +901,7 @@
 		<ingredient count="220" id="5114" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -909,7 +909,7 @@
 		<ingredient count="220" id="5850" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -917,7 +917,7 @@
 		<ingredient count="220" id="5121" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -925,7 +925,7 @@
 		<ingredient count="220" id="5852" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -933,7 +933,7 @@
 		<ingredient count="220" id="5117" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -941,7 +941,7 @@
 		<ingredient count="220" id="5854" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -949,7 +949,7 @@
 		<ingredient count="147" id="5124" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -957,7 +957,7 @@
 		<ingredient count="147" id="5856" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -965,7 +965,7 @@
 		<ingredient count="110" id="5120" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -973,7 +973,7 @@
 		<ingredient count="110" id="5857" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -981,7 +981,7 @@
 		<ingredient count="63" id="6557" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -989,7 +989,7 @@
 		<ingredient count="63" id="6564" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -997,7 +997,7 @@
 		<ingredient count="55" id="6558" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -1005,7 +1005,7 @@
 		<ingredient count="55" id="6565" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -1013,7 +1013,7 @@
 		<ingredient count="300" id="5103" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -1021,7 +1021,7 @@
 		<ingredient count="300" id="5838" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -1029,7 +1029,7 @@
 		<ingredient count="150" id="5097" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -1037,7 +1037,7 @@
 		<ingredient count="150" id="5841" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -1045,7 +1045,7 @@
 		<ingredient count="30" id="5112" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -1053,7 +1053,7 @@
 		<ingredient count="30" id="5848" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -1061,7 +1061,7 @@
 		<ingredient count="30" id="5114" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -1069,7 +1069,7 @@
 		<ingredient count="30" id="5850" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -1077,7 +1077,7 @@
 		<ingredient count="30" id="5121" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -1085,7 +1085,7 @@
 		<ingredient count="30" id="5852" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -1093,7 +1093,7 @@
 		<ingredient count="30" id="5117" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -1101,7 +1101,7 @@
 		<ingredient count="30" id="5854" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -1109,7 +1109,7 @@
 		<ingredient count="20" id="5124" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -1117,7 +1117,7 @@
 		<ingredient count="20" id="5856" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -1125,7 +1125,7 @@
 		<ingredient count="15" id="5120" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -1133,7 +1133,7 @@
 		<ingredient count="15" id="5857" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -1141,7 +1141,7 @@
 		<ingredient count="9" id="6557" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -1149,7 +1149,7 @@
 		<ingredient count="9" id="6564" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -1157,7 +1157,7 @@
 		<ingredient count="8" id="6558" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -1165,7 +1165,7 @@
 		<ingredient count="8" id="6565" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -1173,7 +1173,7 @@
 		<ingredient count="10000" id="5103" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1181,7 +1181,7 @@
 		<ingredient count="10000" id="5838" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1189,7 +1189,7 @@
 		<ingredient count="5000" id="5097" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1197,7 +1197,7 @@
 		<ingredient count="5000" id="5841" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1205,7 +1205,7 @@
 		<ingredient count="1000" id="5112" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1213,7 +1213,7 @@
 		<ingredient count="1000" id="5848" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1221,7 +1221,7 @@
 		<ingredient count="1000" id="5114" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1229,7 +1229,7 @@
 		<ingredient count="1000" id="5850" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1237,7 +1237,7 @@
 		<ingredient count="1000" id="5121" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1245,7 +1245,7 @@
 		<ingredient count="1000" id="5852" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1253,7 +1253,7 @@
 		<ingredient count="1000" id="5117" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1261,7 +1261,7 @@
 		<ingredient count="1000" id="5854" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1269,7 +1269,7 @@
 		<ingredient count="667" id="5124" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1277,7 +1277,7 @@
 		<ingredient count="667" id="5856" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1285,7 +1285,7 @@
 		<ingredient count="500" id="5120" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1293,7 +1293,7 @@
 		<ingredient count="500" id="5857" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1301,7 +1301,7 @@
 		<ingredient count="286" id="6557" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1309,7 +1309,7 @@
 		<ingredient count="286" id="6564" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1317,7 +1317,7 @@
 		<ingredient count="250" id="6558" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1325,7 +1325,7 @@
 		<ingredient count="250" id="6565" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1333,7 +1333,7 @@
 		<ingredient count="1600" id="5103" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1341,7 +1341,7 @@
 		<ingredient count="1600" id="5838" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1349,7 +1349,7 @@
 		<ingredient count="800" id="5097" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1357,7 +1357,7 @@
 		<ingredient count="800" id="5841" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1365,7 +1365,7 @@
 		<ingredient count="160" id="5112" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1373,7 +1373,7 @@
 		<ingredient count="160" id="5848" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1381,7 +1381,7 @@
 		<ingredient count="160" id="5114" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1389,7 +1389,7 @@
 		<ingredient count="160" id="5850" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1397,7 +1397,7 @@
 		<ingredient count="160" id="5121" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1405,7 +1405,7 @@
 		<ingredient count="160" id="5852" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1413,7 +1413,7 @@
 		<ingredient count="160" id="5117" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1421,7 +1421,7 @@
 		<ingredient count="160" id="5854" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1429,7 +1429,7 @@
 		<ingredient count="107" id="5124" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1437,7 +1437,7 @@
 		<ingredient count="107" id="5856" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1445,7 +1445,7 @@
 		<ingredient count="80" id="5120" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1453,7 +1453,7 @@
 		<ingredient count="80" id="5857" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1461,7 +1461,7 @@
 		<ingredient count="46" id="6557" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1469,7 +1469,7 @@
 		<ingredient count="46" id="6564" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1477,7 +1477,7 @@
 		<ingredient count="40" id="6558" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1485,7 +1485,7 @@
 		<ingredient count="40" id="6565" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1493,7 +1493,7 @@
 		<ingredient count="36000" id="5103" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1501,7 +1501,7 @@
 		<ingredient count="36000" id="5838" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1509,7 +1509,7 @@
 		<ingredient count="18000" id="5097" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1517,7 +1517,7 @@
 		<ingredient count="18000" id="5841" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1525,7 +1525,7 @@
 		<ingredient count="3600" id="5112" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1533,7 +1533,7 @@
 		<ingredient count="3600" id="5848" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1541,7 +1541,7 @@
 		<ingredient count="3600" id="5114" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1549,7 +1549,7 @@
 		<ingredient count="3600" id="5850" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1557,7 +1557,7 @@
 		<ingredient count="3600" id="5121" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1565,7 +1565,7 @@
 		<ingredient count="3600" id="5852" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1573,7 +1573,7 @@
 		<ingredient count="3600" id="5117" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1581,7 +1581,7 @@
 		<ingredient count="3600" id="5854" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1589,7 +1589,7 @@
 		<ingredient count="2400" id="5124" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1597,7 +1597,7 @@
 		<ingredient count="2400" id="5856" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1605,7 +1605,7 @@
 		<ingredient count="1800" id="5120" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1613,7 +1613,7 @@
 		<ingredient count="1800" id="5857" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1621,7 +1621,7 @@
 		<ingredient count="1029" id="6557" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1629,7 +1629,7 @@
 		<ingredient count="1029" id="6564" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1637,7 +1637,7 @@
 		<ingredient count="900" id="6558" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1645,7 +1645,7 @@
 		<ingredient count="900" id="6565" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1653,7 +1653,7 @@
 		<ingredient count="4800" id="5103" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1661,7 +1661,7 @@
 		<ingredient count="4800" id="5838" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1669,7 +1669,7 @@
 		<ingredient count="2400" id="5097" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1677,7 +1677,7 @@
 		<ingredient count="2400" id="5841" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1685,7 +1685,7 @@
 		<ingredient count="480" id="5112" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1693,7 +1693,7 @@
 		<ingredient count="480" id="5848" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1701,7 +1701,7 @@
 		<ingredient count="480" id="5114" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1709,7 +1709,7 @@
 		<ingredient count="480" id="5850" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1717,7 +1717,7 @@
 		<ingredient count="480" id="5121" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1725,7 +1725,7 @@
 		<ingredient count="480" id="5852" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1733,7 +1733,7 @@
 		<ingredient count="480" id="5117" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1741,7 +1741,7 @@
 		<ingredient count="480" id="5854" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1749,7 +1749,7 @@
 		<ingredient count="320" id="5124" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1757,7 +1757,7 @@
 		<ingredient count="320" id="5856" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1765,7 +1765,7 @@
 		<ingredient count="240" id="5120" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1773,7 +1773,7 @@
 		<ingredient count="240" id="5857" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1781,7 +1781,7 @@
 		<ingredient count="137" id="6557" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1789,7 +1789,7 @@
 		<ingredient count="137" id="6564" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1797,7 +1797,7 @@
 		<ingredient count="120" id="6558" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1805,7 +1805,7 @@
 		<ingredient count="120" id="6565" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -2165,7 +2165,7 @@
 		<ingredient count="180" id="5098" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2173,7 +2173,7 @@
 		<ingredient count="180" id="5839" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2181,7 +2181,7 @@
 		<ingredient count="180" id="5095" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2189,7 +2189,7 @@
 		<ingredient count="180" id="5840" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2197,7 +2197,7 @@
 		<ingredient count="45" id="5099" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2205,7 +2205,7 @@
 		<ingredient count="45" id="5842" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2213,7 +2213,7 @@
 		<ingredient count="18" id="5109" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2221,7 +2221,7 @@
 		<ingredient count="18" id="5849" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2229,7 +2229,7 @@
 		<ingredient count="22" id="5118" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2237,7 +2237,7 @@
 		<ingredient count="22" id="5851" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2245,7 +2245,7 @@
 		<ingredient count="22" id="5115" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2253,7 +2253,7 @@
 		<ingredient count="22" id="5853" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2261,7 +2261,7 @@
 		<ingredient count="18" id="5122" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2269,7 +2269,7 @@
 		<ingredient count="18" id="5855" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2277,7 +2277,7 @@
 		<ingredient count="7" id="6555" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2285,7 +2285,7 @@
 		<ingredient count="7" id="6562" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2293,7 +2293,7 @@
 		<ingredient count="6" id="6556" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2301,7 +2301,7 @@
 		<ingredient count="6" id="6563" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2309,7 +2309,7 @@
 		<ingredient count="4" id="6559" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2317,7 +2317,7 @@
 		<ingredient count="4" id="6566" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2325,7 +2325,7 @@
 		<ingredient count="4" id="6560" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2333,7 +2333,7 @@
 		<ingredient count="4" id="6567" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2341,7 +2341,7 @@
 		<ingredient count="300" id="5098" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2349,7 +2349,7 @@
 		<ingredient count="300" id="5839" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2357,7 +2357,7 @@
 		<ingredient count="300" id="5095" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2365,7 +2365,7 @@
 		<ingredient count="300" id="5840" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2373,7 +2373,7 @@
 		<ingredient count="75" id="5099" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2381,7 +2381,7 @@
 		<ingredient count="75" id="5842" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2389,7 +2389,7 @@
 		<ingredient count="30" id="5109" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2397,7 +2397,7 @@
 		<ingredient count="30" id="5849" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2405,7 +2405,7 @@
 		<ingredient count="38" id="5118" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2413,7 +2413,7 @@
 		<ingredient count="38" id="5851" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2421,7 +2421,7 @@
 		<ingredient count="38" id="5115" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2429,7 +2429,7 @@
 		<ingredient count="38" id="5853" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2437,7 +2437,7 @@
 		<ingredient count="30" id="5122" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2445,7 +2445,7 @@
 		<ingredient count="30" id="5855" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2453,7 +2453,7 @@
 		<ingredient count="12" id="6555" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2461,7 +2461,7 @@
 		<ingredient count="12" id="6562" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2469,7 +2469,7 @@
 		<ingredient count="10" id="6556" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2477,7 +2477,7 @@
 		<ingredient count="10" id="6563" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2485,7 +2485,7 @@
 		<ingredient count="7" id="6559" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2493,7 +2493,7 @@
 		<ingredient count="7" id="6566" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2501,7 +2501,7 @@
 		<ingredient count="6" id="6560" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2509,7 +2509,7 @@
 		<ingredient count="6" id="6567" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2517,7 +2517,7 @@
 		<ingredient count="500" id="5098" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2525,7 +2525,7 @@
 		<ingredient count="500" id="5839" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2533,7 +2533,7 @@
 		<ingredient count="500" id="5095" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2541,7 +2541,7 @@
 		<ingredient count="500" id="5840" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2549,7 +2549,7 @@
 		<ingredient count="125" id="5099" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2557,7 +2557,7 @@
 		<ingredient count="125" id="5842" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2565,7 +2565,7 @@
 		<ingredient count="50" id="5109" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2573,7 +2573,7 @@
 		<ingredient count="50" id="5849" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2581,7 +2581,7 @@
 		<ingredient count="62" id="5118" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2589,7 +2589,7 @@
 		<ingredient count="62" id="5851" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2597,7 +2597,7 @@
 		<ingredient count="62" id="5115" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2605,7 +2605,7 @@
 		<ingredient count="62" id="5853" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2613,7 +2613,7 @@
 		<ingredient count="50" id="5122" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2621,7 +2621,7 @@
 		<ingredient count="50" id="5855" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2629,7 +2629,7 @@
 		<ingredient count="20" id="6555" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2637,7 +2637,7 @@
 		<ingredient count="20" id="6562" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2645,7 +2645,7 @@
 		<ingredient count="17" id="6556" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2653,7 +2653,7 @@
 		<ingredient count="17" id="6563" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2661,7 +2661,7 @@
 		<ingredient count="11" id="6559" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2669,7 +2669,7 @@
 		<ingredient count="11" id="6566" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2677,7 +2677,7 @@
 		<ingredient count="10" id="6560" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2685,7 +2685,7 @@
 		<ingredient count="10" id="6567" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/350980006.xml b/L2J_DataPack_BETA/dist/game/data/multisell/350980006.xml
index c60fc05cdf52a6f3cde3f7a0b6e8095ebc2cc63d..815d331482478317ceaf8e4916f0236b105bc50f 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/350980006.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/350980006.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Mature Blue Cobol -->
 		<ingredient count="20" id="5107" />
@@ -293,7 +293,7 @@
 		<ingredient count="200" id="5105" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -301,7 +301,7 @@
 		<ingredient count="200" id="5846" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -309,7 +309,7 @@
 		<ingredient count="100" id="5112" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -317,7 +317,7 @@
 		<ingredient count="100" id="5848" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -325,7 +325,7 @@
 		<ingredient count="100" id="5114" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -333,7 +333,7 @@
 		<ingredient count="100" id="5850" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -341,7 +341,7 @@
 		<ingredient count="100" id="5121" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -349,7 +349,7 @@
 		<ingredient count="100" id="5852" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -357,7 +357,7 @@
 		<ingredient count="29" id="6557" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -365,7 +365,7 @@
 		<ingredient count="29" id="6564" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -373,7 +373,7 @@
 		<ingredient count="25" id="6558" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -381,7 +381,7 @@
 		<ingredient count="25" id="6565" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -389,7 +389,7 @@
 		<ingredient count="24" id="5105" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -397,7 +397,7 @@
 		<ingredient count="24" id="5846" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -405,7 +405,7 @@
 		<ingredient count="12" id="5112" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -413,7 +413,7 @@
 		<ingredient count="12" id="5848" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -421,7 +421,7 @@
 		<ingredient count="12" id="5114" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -429,7 +429,7 @@
 		<ingredient count="12" id="5850" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -437,7 +437,7 @@
 		<ingredient count="12" id="5121" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -445,7 +445,7 @@
 		<ingredient count="12" id="5852" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -453,7 +453,7 @@
 		<ingredient count="3" id="6557" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -461,7 +461,7 @@
 		<ingredient count="3" id="6564" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -469,7 +469,7 @@
 		<ingredient count="3" id="6558" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -477,7 +477,7 @@
 		<ingredient count="3" id="6565" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -485,7 +485,7 @@
 		<ingredient count="440" id="5105" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -493,7 +493,7 @@
 		<ingredient count="440" id="5846" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -501,7 +501,7 @@
 		<ingredient count="220" id="5112" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -509,7 +509,7 @@
 		<ingredient count="220" id="5848" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -517,7 +517,7 @@
 		<ingredient count="220" id="5114" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -525,7 +525,7 @@
 		<ingredient count="220" id="5850" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -533,7 +533,7 @@
 		<ingredient count="220" id="5121" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -541,7 +541,7 @@
 		<ingredient count="220" id="5852" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -549,7 +549,7 @@
 		<ingredient count="63" id="6557" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -557,7 +557,7 @@
 		<ingredient count="63" id="6564" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -565,7 +565,7 @@
 		<ingredient count="55" id="6558" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -573,7 +573,7 @@
 		<ingredient count="55" id="6565" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -581,7 +581,7 @@
 		<ingredient count="60" id="5105" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -589,7 +589,7 @@
 		<ingredient count="60" id="5846" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -597,7 +597,7 @@
 		<ingredient count="30" id="5112" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -605,7 +605,7 @@
 		<ingredient count="30" id="5848" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -613,7 +613,7 @@
 		<ingredient count="30" id="5114" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -621,7 +621,7 @@
 		<ingredient count="30" id="5850" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -629,7 +629,7 @@
 		<ingredient count="30" id="5121" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -637,7 +637,7 @@
 		<ingredient count="30" id="5852" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -645,7 +645,7 @@
 		<ingredient count="9" id="6557" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -653,7 +653,7 @@
 		<ingredient count="9" id="6564" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -661,7 +661,7 @@
 		<ingredient count="8" id="6558" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -669,7 +669,7 @@
 		<ingredient count="8" id="6565" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -677,7 +677,7 @@
 		<ingredient count="2000" id="5105" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -685,7 +685,7 @@
 		<ingredient count="2000" id="5846" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -693,7 +693,7 @@
 		<ingredient count="1000" id="5112" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -701,7 +701,7 @@
 		<ingredient count="1000" id="5848" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -709,7 +709,7 @@
 		<ingredient count="1000" id="5114" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -717,7 +717,7 @@
 		<ingredient count="1000" id="5850" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -725,7 +725,7 @@
 		<ingredient count="1000" id="5121" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -733,7 +733,7 @@
 		<ingredient count="1000" id="5852" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -741,7 +741,7 @@
 		<ingredient count="286" id="6557" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -749,7 +749,7 @@
 		<ingredient count="286" id="6564" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -757,7 +757,7 @@
 		<ingredient count="250" id="6558" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -765,7 +765,7 @@
 		<ingredient count="250" id="6565" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -773,7 +773,7 @@
 		<ingredient count="320" id="5105" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -781,7 +781,7 @@
 		<ingredient count="320" id="5846" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -789,7 +789,7 @@
 		<ingredient count="160" id="5112" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -797,7 +797,7 @@
 		<ingredient count="160" id="5848" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -805,7 +805,7 @@
 		<ingredient count="160" id="5114" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -813,7 +813,7 @@
 		<ingredient count="160" id="5850" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -821,7 +821,7 @@
 		<ingredient count="160" id="5121" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -829,7 +829,7 @@
 		<ingredient count="160" id="5852" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -837,7 +837,7 @@
 		<ingredient count="46" id="6557" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -845,7 +845,7 @@
 		<ingredient count="46" id="6564" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -853,7 +853,7 @@
 		<ingredient count="40" id="6558" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -861,7 +861,7 @@
 		<ingredient count="40" id="6565" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -869,7 +869,7 @@
 		<ingredient count="7200" id="5105" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -877,7 +877,7 @@
 		<ingredient count="7200" id="5846" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -885,7 +885,7 @@
 		<ingredient count="3600" id="5112" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -893,7 +893,7 @@
 		<ingredient count="3600" id="5848" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -901,7 +901,7 @@
 		<ingredient count="3600" id="5114" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -909,7 +909,7 @@
 		<ingredient count="3600" id="5850" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -917,7 +917,7 @@
 		<ingredient count="3600" id="5121" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -925,7 +925,7 @@
 		<ingredient count="3600" id="5852" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -933,7 +933,7 @@
 		<ingredient count="1029" id="6557" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -941,7 +941,7 @@
 		<ingredient count="1029" id="6564" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -949,7 +949,7 @@
 		<ingredient count="900" id="6558" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -957,7 +957,7 @@
 		<ingredient count="900" id="6565" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -965,7 +965,7 @@
 		<ingredient count="960" id="5105" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -973,7 +973,7 @@
 		<ingredient count="960" id="5846" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -981,7 +981,7 @@
 		<ingredient count="480" id="5112" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -989,7 +989,7 @@
 		<ingredient count="480" id="5848" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -997,7 +997,7 @@
 		<ingredient count="480" id="5114" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1005,7 +1005,7 @@
 		<ingredient count="480" id="5850" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1013,7 +1013,7 @@
 		<ingredient count="480" id="5121" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1021,7 +1021,7 @@
 		<ingredient count="480" id="5852" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1029,7 +1029,7 @@
 		<ingredient count="137" id="6557" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1037,7 +1037,7 @@
 		<ingredient count="137" id="6564" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1045,7 +1045,7 @@
 		<ingredient count="120" id="6558" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1053,7 +1053,7 @@
 		<ingredient count="120" id="6565" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1253,7 +1253,7 @@
 		<ingredient count="18" id="5107" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1261,7 +1261,7 @@
 		<ingredient count="18" id="5847" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1269,7 +1269,7 @@
 		<ingredient count="18" id="5109" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1277,7 +1277,7 @@
 		<ingredient count="18" id="5849" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1285,7 +1285,7 @@
 		<ingredient count="22" id="5118" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1293,7 +1293,7 @@
 		<ingredient count="22" id="5851" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1301,7 +1301,7 @@
 		<ingredient count="6" id="6556" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1309,7 +1309,7 @@
 		<ingredient count="6" id="6563" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1317,7 +1317,7 @@
 		<ingredient count="4" id="6559" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1325,7 +1325,7 @@
 		<ingredient count="4" id="6566" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1333,7 +1333,7 @@
 		<ingredient count="4" id="6560" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1341,7 +1341,7 @@
 		<ingredient count="4" id="6567" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1349,7 +1349,7 @@
 		<ingredient count="30" id="5107" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1357,7 +1357,7 @@
 		<ingredient count="30" id="5847" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1365,7 +1365,7 @@
 		<ingredient count="30" id="5109" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1373,7 +1373,7 @@
 		<ingredient count="30" id="5849" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1381,7 +1381,7 @@
 		<ingredient count="38" id="5118" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1389,7 +1389,7 @@
 		<ingredient count="38" id="5851" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1397,7 +1397,7 @@
 		<ingredient count="10" id="6556" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1405,7 +1405,7 @@
 		<ingredient count="10" id="6563" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1413,7 +1413,7 @@
 		<ingredient count="7" id="6559" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1421,7 +1421,7 @@
 		<ingredient count="7" id="6566" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1429,7 +1429,7 @@
 		<ingredient count="6" id="6560" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1437,7 +1437,7 @@
 		<ingredient count="6" id="6567" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1445,7 +1445,7 @@
 		<ingredient count="50" id="5107" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1453,7 +1453,7 @@
 		<ingredient count="50" id="5847" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1461,7 +1461,7 @@
 		<ingredient count="50" id="5109" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1469,7 +1469,7 @@
 		<ingredient count="50" id="5849" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1477,7 +1477,7 @@
 		<ingredient count="62" id="5118" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1485,7 +1485,7 @@
 		<ingredient count="62" id="5851" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1493,7 +1493,7 @@
 		<ingredient count="17" id="6556" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1501,7 +1501,7 @@
 		<ingredient count="17" id="6563" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1509,7 +1509,7 @@
 		<ingredient count="11" id="6559" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1517,7 +1517,7 @@
 		<ingredient count="11" id="6566" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1525,7 +1525,7 @@
 		<ingredient count="10" id="6560" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1533,7 +1533,7 @@
 		<ingredient count="10" id="6567" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/350980007.xml b/L2J_DataPack_BETA/dist/game/data/multisell/350980007.xml
index de2b2a85173a5b01f5122a31aa12bac701ac5a47..de1a9c6785a631d35b5cb831b01f84bc0ef32253 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/350980007.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/350980007.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Mature Desert Codran -->
 		<ingredient count="10" id="5120" />
@@ -197,7 +197,7 @@
 		<ingredient count="40" id="6555" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -205,7 +205,7 @@
 		<ingredient count="40" id="6562" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -213,7 +213,7 @@
 		<ingredient count="29" id="6557" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -221,7 +221,7 @@
 		<ingredient count="29" id="6564" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -229,7 +229,7 @@
 		<ingredient count="22" id="6559" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -237,7 +237,7 @@
 		<ingredient count="22" id="6566" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -245,7 +245,7 @@
 		<ingredient count="18" id="6561" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -253,7 +253,7 @@
 		<ingredient count="18" id="6568" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -261,7 +261,7 @@
 		<ingredient count="5" id="6555" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -269,7 +269,7 @@
 		<ingredient count="5" id="6562" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -277,7 +277,7 @@
 		<ingredient count="3" id="6557" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -285,7 +285,7 @@
 		<ingredient count="3" id="6564" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -293,7 +293,7 @@
 		<ingredient count="3" id="6559" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -301,7 +301,7 @@
 		<ingredient count="3" id="6566" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -309,7 +309,7 @@
 		<ingredient count="2" id="6561" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -317,7 +317,7 @@
 		<ingredient count="2" id="6568" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -325,7 +325,7 @@
 		<ingredient count="88" id="6555" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -333,7 +333,7 @@
 		<ingredient count="88" id="6562" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -341,7 +341,7 @@
 		<ingredient count="63" id="6557" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -349,7 +349,7 @@
 		<ingredient count="63" id="6564" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -357,7 +357,7 @@
 		<ingredient count="49" id="6559" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -365,7 +365,7 @@
 		<ingredient count="49" id="6566" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -373,7 +373,7 @@
 		<ingredient count="40" id="6561" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -381,7 +381,7 @@
 		<ingredient count="40" id="6568" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -389,7 +389,7 @@
 		<ingredient count="12" id="6555" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -397,7 +397,7 @@
 		<ingredient count="12" id="6562" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -405,7 +405,7 @@
 		<ingredient count="9" id="6557" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -413,7 +413,7 @@
 		<ingredient count="9" id="6564" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -421,7 +421,7 @@
 		<ingredient count="7" id="6559" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -429,7 +429,7 @@
 		<ingredient count="7" id="6566" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -437,7 +437,7 @@
 		<ingredient count="5" id="6561" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -445,7 +445,7 @@
 		<ingredient count="5" id="6568" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -453,7 +453,7 @@
 		<ingredient count="400" id="6555" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -461,7 +461,7 @@
 		<ingredient count="400" id="6562" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -469,7 +469,7 @@
 		<ingredient count="286" id="6557" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -477,7 +477,7 @@
 		<ingredient count="286" id="6564" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -485,7 +485,7 @@
 		<ingredient count="222" id="6559" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -493,7 +493,7 @@
 		<ingredient count="222" id="6566" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -501,7 +501,7 @@
 		<ingredient count="182" id="6561" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -509,7 +509,7 @@
 		<ingredient count="182" id="6568" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -517,7 +517,7 @@
 		<ingredient count="64" id="6555" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -525,7 +525,7 @@
 		<ingredient count="64" id="6562" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -533,7 +533,7 @@
 		<ingredient count="46" id="6557" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -541,7 +541,7 @@
 		<ingredient count="46" id="6564" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -549,7 +549,7 @@
 		<ingredient count="36" id="6559" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -557,7 +557,7 @@
 		<ingredient count="36" id="6566" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -565,7 +565,7 @@
 		<ingredient count="29" id="6561" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -573,7 +573,7 @@
 		<ingredient count="29" id="6568" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -581,7 +581,7 @@
 		<ingredient count="1440" id="6555" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -589,7 +589,7 @@
 		<ingredient count="1440" id="6562" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -597,7 +597,7 @@
 		<ingredient count="1029" id="6557" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -605,7 +605,7 @@
 		<ingredient count="1029" id="6564" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -613,7 +613,7 @@
 		<ingredient count="800" id="6559" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -621,7 +621,7 @@
 		<ingredient count="800" id="6566" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -629,7 +629,7 @@
 		<ingredient count="655" id="6561" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -637,7 +637,7 @@
 		<ingredient count="655" id="6568" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -645,7 +645,7 @@
 		<ingredient count="192" id="6555" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -653,7 +653,7 @@
 		<ingredient count="192" id="6562" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -661,7 +661,7 @@
 		<ingredient count="137" id="6557" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -669,7 +669,7 @@
 		<ingredient count="137" id="6564" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -677,7 +677,7 @@
 		<ingredient count="107" id="6559" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -685,7 +685,7 @@
 		<ingredient count="107" id="6566" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -693,7 +693,7 @@
 		<ingredient count="87" id="6561" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -701,7 +701,7 @@
 		<ingredient count="87" id="6568" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -837,7 +837,7 @@
 		<ingredient count="9" id="5120" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -845,7 +845,7 @@
 		<ingredient count="9" id="5857" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -853,7 +853,7 @@
 		<ingredient count="6" id="6556" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -861,7 +861,7 @@
 		<ingredient count="6" id="6563" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -869,7 +869,7 @@
 		<ingredient count="4" id="6558" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -877,7 +877,7 @@
 		<ingredient count="4" id="6565" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -885,7 +885,7 @@
 		<ingredient count="4" id="6560" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -893,7 +893,7 @@
 		<ingredient count="4" id="6567" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -901,7 +901,7 @@
 		<ingredient count="15" id="5120" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -909,7 +909,7 @@
 		<ingredient count="15" id="5857" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -917,7 +917,7 @@
 		<ingredient count="10" id="6556" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -925,7 +925,7 @@
 		<ingredient count="10" id="6563" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -933,7 +933,7 @@
 		<ingredient count="8" id="6558" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -941,7 +941,7 @@
 		<ingredient count="8" id="6565" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -949,7 +949,7 @@
 		<ingredient count="6" id="6560" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -957,7 +957,7 @@
 		<ingredient count="6" id="6567" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -965,7 +965,7 @@
 		<ingredient count="25" id="5120" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -973,7 +973,7 @@
 		<ingredient count="25" id="5857" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -981,7 +981,7 @@
 		<ingredient count="17" id="6556" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -989,7 +989,7 @@
 		<ingredient count="17" id="6563" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -997,7 +997,7 @@
 		<ingredient count="12" id="6558" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1005,7 +1005,7 @@
 		<ingredient count="12" id="6565" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1013,7 +1013,7 @@
 		<ingredient count="10" id="6560" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1021,7 +1021,7 @@
 		<ingredient count="10" id="6567" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/350980008.xml b/L2J_DataPack_BETA/dist/game/data/multisell/350980008.xml
index 412fd42c91677bed40ca7a78daeb789eace9b173..6f181f6e0b371eb318383f6dc708e454571fb294 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/350980008.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/350980008.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Mature Great Codran -->
 		<ingredient count="13" id="5124" />
@@ -245,7 +245,7 @@
 		<ingredient count="100" id="5122" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -253,7 +253,7 @@
 		<ingredient count="100" id="5855" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -261,7 +261,7 @@
 		<ingredient count="50" id="5120" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -269,7 +269,7 @@
 		<ingredient count="50" id="5857" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -277,7 +277,7 @@
 		<ingredient count="33" id="6556" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -285,7 +285,7 @@
 		<ingredient count="33" id="6563" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -293,7 +293,7 @@
 		<ingredient count="25" id="6558" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -301,7 +301,7 @@
 		<ingredient count="25" id="6565" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -309,7 +309,7 @@
 		<ingredient count="20" id="6560" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -317,7 +317,7 @@
 		<ingredient count="20" id="6567" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -325,7 +325,7 @@
 		<ingredient count="12" id="5122" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -333,7 +333,7 @@
 		<ingredient count="12" id="5855" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -341,7 +341,7 @@
 		<ingredient count="6" id="5120" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -349,7 +349,7 @@
 		<ingredient count="6" id="5857" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -357,7 +357,7 @@
 		<ingredient count="4" id="6556" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -365,7 +365,7 @@
 		<ingredient count="4" id="6563" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -373,7 +373,7 @@
 		<ingredient count="3" id="6558" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -381,7 +381,7 @@
 		<ingredient count="3" id="6565" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -389,7 +389,7 @@
 		<ingredient count="2" id="6560" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -397,7 +397,7 @@
 		<ingredient count="2" id="6567" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -405,7 +405,7 @@
 		<ingredient count="220" id="5122" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -413,7 +413,7 @@
 		<ingredient count="220" id="5855" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -421,7 +421,7 @@
 		<ingredient count="110" id="5120" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -429,7 +429,7 @@
 		<ingredient count="110" id="5857" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -437,7 +437,7 @@
 		<ingredient count="73" id="6556" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -445,7 +445,7 @@
 		<ingredient count="73" id="6563" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -453,7 +453,7 @@
 		<ingredient count="55" id="6558" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -461,7 +461,7 @@
 		<ingredient count="55" id="6565" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -469,7 +469,7 @@
 		<ingredient count="44" id="6560" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -477,7 +477,7 @@
 		<ingredient count="44" id="6567" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -485,7 +485,7 @@
 		<ingredient count="30" id="5122" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -493,7 +493,7 @@
 		<ingredient count="30" id="5855" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -501,7 +501,7 @@
 		<ingredient count="15" id="5120" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -509,7 +509,7 @@
 		<ingredient count="15" id="5857" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -517,7 +517,7 @@
 		<ingredient count="10" id="6556" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -525,7 +525,7 @@
 		<ingredient count="10" id="6563" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -533,7 +533,7 @@
 		<ingredient count="8" id="6558" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -541,7 +541,7 @@
 		<ingredient count="8" id="6565" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -549,7 +549,7 @@
 		<ingredient count="6" id="6560" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -557,7 +557,7 @@
 		<ingredient count="6" id="6567" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -565,7 +565,7 @@
 		<ingredient count="1000" id="5122" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -573,7 +573,7 @@
 		<ingredient count="1000" id="5855" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -581,7 +581,7 @@
 		<ingredient count="500" id="5120" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -589,7 +589,7 @@
 		<ingredient count="500" id="5857" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -597,7 +597,7 @@
 		<ingredient count="333" id="6556" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -605,7 +605,7 @@
 		<ingredient count="333" id="6563" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -613,7 +613,7 @@
 		<ingredient count="250" id="6558" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -621,7 +621,7 @@
 		<ingredient count="250" id="6565" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -629,7 +629,7 @@
 		<ingredient count="200" id="6560" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -637,7 +637,7 @@
 		<ingredient count="200" id="6567" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -645,7 +645,7 @@
 		<ingredient count="160" id="5122" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -653,7 +653,7 @@
 		<ingredient count="160" id="5855" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -661,7 +661,7 @@
 		<ingredient count="80" id="5120" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -669,7 +669,7 @@
 		<ingredient count="80" id="5857" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -677,7 +677,7 @@
 		<ingredient count="53" id="6556" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -685,7 +685,7 @@
 		<ingredient count="53" id="6563" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -693,7 +693,7 @@
 		<ingredient count="40" id="6558" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -701,7 +701,7 @@
 		<ingredient count="40" id="6565" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -709,7 +709,7 @@
 		<ingredient count="32" id="6560" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -717,7 +717,7 @@
 		<ingredient count="32" id="6567" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -725,7 +725,7 @@
 		<ingredient count="3600" id="5122" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -733,7 +733,7 @@
 		<ingredient count="3600" id="5855" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -741,7 +741,7 @@
 		<ingredient count="1800" id="5120" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -749,7 +749,7 @@
 		<ingredient count="1800" id="5857" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -757,7 +757,7 @@
 		<ingredient count="1200" id="6556" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -765,7 +765,7 @@
 		<ingredient count="1200" id="6563" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -773,7 +773,7 @@
 		<ingredient count="900" id="6558" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -781,7 +781,7 @@
 		<ingredient count="900" id="6565" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -789,7 +789,7 @@
 		<ingredient count="720" id="6560" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -797,7 +797,7 @@
 		<ingredient count="720" id="6567" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -805,7 +805,7 @@
 		<ingredient count="480" id="5122" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -813,7 +813,7 @@
 		<ingredient count="480" id="5855" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -821,7 +821,7 @@
 		<ingredient count="240" id="5120" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -829,7 +829,7 @@
 		<ingredient count="240" id="5857" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -837,7 +837,7 @@
 		<ingredient count="160" id="6556" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -845,7 +845,7 @@
 		<ingredient count="160" id="6563" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -853,7 +853,7 @@
 		<ingredient count="120" id="6558" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -861,7 +861,7 @@
 		<ingredient count="120" id="6565" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -869,7 +869,7 @@
 		<ingredient count="96" id="6560" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -877,7 +877,7 @@
 		<ingredient count="96" id="6567" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1045,7 +1045,7 @@
 		<ingredient count="12" id="5124" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1053,7 +1053,7 @@
 		<ingredient count="12" id="5856" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1061,7 +1061,7 @@
 		<ingredient count="7" id="6555" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1069,7 +1069,7 @@
 		<ingredient count="7" id="6562" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1077,7 +1077,7 @@
 		<ingredient count="5" id="6557" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1085,7 +1085,7 @@
 		<ingredient count="5" id="6564" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1093,7 +1093,7 @@
 		<ingredient count="4" id="6559" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1101,7 +1101,7 @@
 		<ingredient count="4" id="6566" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1109,7 +1109,7 @@
 		<ingredient count="3" id="6561" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1117,7 +1117,7 @@
 		<ingredient count="3" id="6568" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -1125,7 +1125,7 @@
 		<ingredient count="20" id="5124" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1133,7 +1133,7 @@
 		<ingredient count="20" id="5856" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1141,7 +1141,7 @@
 		<ingredient count="12" id="6555" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1149,7 +1149,7 @@
 		<ingredient count="12" id="6562" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1157,7 +1157,7 @@
 		<ingredient count="9" id="6557" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1165,7 +1165,7 @@
 		<ingredient count="9" id="6564" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1173,7 +1173,7 @@
 		<ingredient count="7" id="6559" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1181,7 +1181,7 @@
 		<ingredient count="7" id="6566" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1189,7 +1189,7 @@
 		<ingredient count="5" id="6561" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1197,7 +1197,7 @@
 		<ingredient count="5" id="6568" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -1205,7 +1205,7 @@
 		<ingredient count="33" id="5124" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1213,7 +1213,7 @@
 		<ingredient count="33" id="5856" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1221,7 +1221,7 @@
 		<ingredient count="20" id="6555" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1229,7 +1229,7 @@
 		<ingredient count="20" id="6562" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1237,7 +1237,7 @@
 		<ingredient count="14" id="6557" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1245,7 +1245,7 @@
 		<ingredient count="14" id="6564" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1253,7 +1253,7 @@
 		<ingredient count="11" id="6559" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1261,7 +1261,7 @@
 		<ingredient count="11" id="6566" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1269,7 +1269,7 @@
 		<ingredient count="9" id="6561" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -1277,7 +1277,7 @@
 		<ingredient count="9" id="6568" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/350980009.xml b/L2J_DataPack_BETA/dist/game/data/multisell/350980009.xml
index f0dc5eef1c9faaca8dfc2317c48a4b9c29223b11..7c953a96b7656e5d25c2a395e4a6b7bbe388b410 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/350980009.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/350980009.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Mature Red Coda -->
 		<ingredient count="200" id="5098" />
@@ -485,7 +485,7 @@
 		<ingredient count="1000" id="5103" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -493,7 +493,7 @@
 		<ingredient count="1000" id="5838" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -501,7 +501,7 @@
 		<ingredient count="500" id="5097" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -509,7 +509,7 @@
 		<ingredient count="500" id="5841" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -517,7 +517,7 @@
 		<ingredient count="250" id="5100" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -525,7 +525,7 @@
 		<ingredient count="250" id="5844" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -533,7 +533,7 @@
 		<ingredient count="250" id="5108" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -541,7 +541,7 @@
 		<ingredient count="250" id="5845" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -549,7 +549,7 @@
 		<ingredient count="200" id="5105" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -557,7 +557,7 @@
 		<ingredient count="200" id="5846" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -565,7 +565,7 @@
 		<ingredient count="100" id="5112" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -573,7 +573,7 @@
 		<ingredient count="100" id="5848" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -581,7 +581,7 @@
 		<ingredient count="100" id="5114" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -589,7 +589,7 @@
 		<ingredient count="100" id="5850" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -597,7 +597,7 @@
 		<ingredient count="100" id="5121" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -605,7 +605,7 @@
 		<ingredient count="100" id="5852" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -613,7 +613,7 @@
 		<ingredient count="100" id="5117" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -621,7 +621,7 @@
 		<ingredient count="100" id="5854" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -629,7 +629,7 @@
 		<ingredient count="20" id="6560" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -637,7 +637,7 @@
 		<ingredient count="20" id="6567" />
 		<!-- Adena -->
 		<ingredient count="5000" id="57" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
@@ -645,7 +645,7 @@
 		<ingredient count="120" id="5103" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -653,7 +653,7 @@
 		<ingredient count="120" id="5838" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -661,7 +661,7 @@
 		<ingredient count="60" id="5097" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -669,7 +669,7 @@
 		<ingredient count="60" id="5841" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -677,7 +677,7 @@
 		<ingredient count="30" id="5100" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -685,7 +685,7 @@
 		<ingredient count="30" id="5844" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -693,7 +693,7 @@
 		<ingredient count="30" id="5108" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -701,7 +701,7 @@
 		<ingredient count="30" id="5845" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -709,7 +709,7 @@
 		<ingredient count="24" id="5105" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -717,7 +717,7 @@
 		<ingredient count="24" id="5846" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -725,7 +725,7 @@
 		<ingredient count="12" id="5112" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -733,7 +733,7 @@
 		<ingredient count="12" id="5848" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -741,7 +741,7 @@
 		<ingredient count="12" id="5114" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -749,7 +749,7 @@
 		<ingredient count="12" id="5850" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -757,7 +757,7 @@
 		<ingredient count="12" id="5121" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -765,7 +765,7 @@
 		<ingredient count="12" id="5852" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -773,7 +773,7 @@
 		<ingredient count="12" id="5117" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -781,7 +781,7 @@
 		<ingredient count="12" id="5854" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -789,7 +789,7 @@
 		<ingredient count="2" id="6560" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -797,7 +797,7 @@
 		<ingredient count="2" id="6567" />
 		<!-- Adena -->
 		<ingredient count="600" id="57" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -805,7 +805,7 @@
 		<ingredient count="2200" id="5103" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -813,7 +813,7 @@
 		<ingredient count="2200" id="5838" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -821,7 +821,7 @@
 		<ingredient count="1100" id="5097" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -829,7 +829,7 @@
 		<ingredient count="1100" id="5841" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -837,7 +837,7 @@
 		<ingredient count="550" id="5100" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -845,7 +845,7 @@
 		<ingredient count="550" id="5844" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -853,7 +853,7 @@
 		<ingredient count="550" id="5108" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -861,7 +861,7 @@
 		<ingredient count="550" id="5845" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -869,7 +869,7 @@
 		<ingredient count="440" id="5105" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -877,7 +877,7 @@
 		<ingredient count="440" id="5846" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -885,7 +885,7 @@
 		<ingredient count="220" id="5112" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -893,7 +893,7 @@
 		<ingredient count="220" id="5848" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -901,7 +901,7 @@
 		<ingredient count="220" id="5114" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -909,7 +909,7 @@
 		<ingredient count="220" id="5850" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -917,7 +917,7 @@
 		<ingredient count="220" id="5121" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -925,7 +925,7 @@
 		<ingredient count="220" id="5852" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -933,7 +933,7 @@
 		<ingredient count="220" id="5117" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -941,7 +941,7 @@
 		<ingredient count="220" id="5854" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -949,7 +949,7 @@
 		<ingredient count="44" id="6560" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -957,7 +957,7 @@
 		<ingredient count="44" id="6567" />
 		<!-- Adena -->
 		<ingredient count="11000" id="57" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
@@ -965,7 +965,7 @@
 		<ingredient count="300" id="5103" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -973,7 +973,7 @@
 		<ingredient count="300" id="5838" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -981,7 +981,7 @@
 		<ingredient count="150" id="5097" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -989,7 +989,7 @@
 		<ingredient count="150" id="5841" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -997,7 +997,7 @@
 		<ingredient count="75" id="5100" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -1005,7 +1005,7 @@
 		<ingredient count="75" id="5844" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -1013,7 +1013,7 @@
 		<ingredient count="75" id="5108" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -1021,7 +1021,7 @@
 		<ingredient count="75" id="5845" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -1029,7 +1029,7 @@
 		<ingredient count="60" id="5105" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -1037,7 +1037,7 @@
 		<ingredient count="60" id="5846" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -1045,7 +1045,7 @@
 		<ingredient count="30" id="5112" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -1053,7 +1053,7 @@
 		<ingredient count="30" id="5848" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -1061,7 +1061,7 @@
 		<ingredient count="30" id="5114" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -1069,7 +1069,7 @@
 		<ingredient count="30" id="5850" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -1077,7 +1077,7 @@
 		<ingredient count="30" id="5121" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -1085,7 +1085,7 @@
 		<ingredient count="30" id="5852" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -1093,7 +1093,7 @@
 		<ingredient count="30" id="5117" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -1101,7 +1101,7 @@
 		<ingredient count="30" id="5854" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -1109,7 +1109,7 @@
 		<ingredient count="6" id="6560" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -1117,7 +1117,7 @@
 		<ingredient count="6" id="6567" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -1125,7 +1125,7 @@
 		<ingredient count="10000" id="5103" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1133,7 +1133,7 @@
 		<ingredient count="10000" id="5838" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1141,7 +1141,7 @@
 		<ingredient count="5000" id="5097" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1149,7 +1149,7 @@
 		<ingredient count="5000" id="5841" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1157,7 +1157,7 @@
 		<ingredient count="2500" id="5100" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1165,7 +1165,7 @@
 		<ingredient count="2500" id="5844" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1173,7 +1173,7 @@
 		<ingredient count="2500" id="5108" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1181,7 +1181,7 @@
 		<ingredient count="2500" id="5845" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1189,7 +1189,7 @@
 		<ingredient count="2000" id="5105" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1197,7 +1197,7 @@
 		<ingredient count="2000" id="5846" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1205,7 +1205,7 @@
 		<ingredient count="1000" id="5112" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1213,7 +1213,7 @@
 		<ingredient count="1000" id="5848" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1221,7 +1221,7 @@
 		<ingredient count="1000" id="5114" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1229,7 +1229,7 @@
 		<ingredient count="1000" id="5850" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1237,7 +1237,7 @@
 		<ingredient count="1000" id="5121" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1245,7 +1245,7 @@
 		<ingredient count="1000" id="5852" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1253,7 +1253,7 @@
 		<ingredient count="1000" id="5117" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1261,7 +1261,7 @@
 		<ingredient count="1000" id="5854" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1269,7 +1269,7 @@
 		<ingredient count="200" id="6560" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1277,7 +1277,7 @@
 		<ingredient count="200" id="6567" />
 		<!-- Adena -->
 		<ingredient count="50000" id="57" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
@@ -1285,7 +1285,7 @@
 		<ingredient count="1600" id="5103" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1293,7 +1293,7 @@
 		<ingredient count="1600" id="5838" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1301,7 +1301,7 @@
 		<ingredient count="800" id="5097" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1309,7 +1309,7 @@
 		<ingredient count="800" id="5841" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1317,7 +1317,7 @@
 		<ingredient count="400" id="5100" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1325,7 +1325,7 @@
 		<ingredient count="400" id="5844" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1333,7 +1333,7 @@
 		<ingredient count="400" id="5108" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1341,7 +1341,7 @@
 		<ingredient count="400" id="5845" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1349,7 +1349,7 @@
 		<ingredient count="320" id="5105" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1357,7 +1357,7 @@
 		<ingredient count="320" id="5846" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1365,7 +1365,7 @@
 		<ingredient count="160" id="5112" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1373,7 +1373,7 @@
 		<ingredient count="160" id="5848" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1381,7 +1381,7 @@
 		<ingredient count="160" id="5114" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1389,7 +1389,7 @@
 		<ingredient count="160" id="5850" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1397,7 +1397,7 @@
 		<ingredient count="160" id="5121" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1405,7 +1405,7 @@
 		<ingredient count="160" id="5852" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1413,7 +1413,7 @@
 		<ingredient count="160" id="5117" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1421,7 +1421,7 @@
 		<ingredient count="160" id="5854" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1429,7 +1429,7 @@
 		<ingredient count="32" id="6560" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1437,7 +1437,7 @@
 		<ingredient count="32" id="6567" />
 		<!-- Adena -->
 		<ingredient count="8000" id="57" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -1445,7 +1445,7 @@
 		<ingredient count="36000" id="5103" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1453,7 +1453,7 @@
 		<ingredient count="36000" id="5838" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1461,7 +1461,7 @@
 		<ingredient count="18000" id="5097" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1469,7 +1469,7 @@
 		<ingredient count="18000" id="5841" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1477,7 +1477,7 @@
 		<ingredient count="9000" id="5100" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1485,7 +1485,7 @@
 		<ingredient count="9000" id="5844" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1493,7 +1493,7 @@
 		<ingredient count="9000" id="5108" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1501,7 +1501,7 @@
 		<ingredient count="9000" id="5845" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1509,7 +1509,7 @@
 		<ingredient count="7200" id="5105" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1517,7 +1517,7 @@
 		<ingredient count="7200" id="5846" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1525,7 +1525,7 @@
 		<ingredient count="3600" id="5112" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1533,7 +1533,7 @@
 		<ingredient count="3600" id="5848" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1541,7 +1541,7 @@
 		<ingredient count="3600" id="5114" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1549,7 +1549,7 @@
 		<ingredient count="3600" id="5850" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1557,7 +1557,7 @@
 		<ingredient count="3600" id="5121" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1565,7 +1565,7 @@
 		<ingredient count="3600" id="5852" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1573,7 +1573,7 @@
 		<ingredient count="3600" id="5117" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1581,7 +1581,7 @@
 		<ingredient count="3600" id="5854" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1589,7 +1589,7 @@
 		<ingredient count="720" id="6560" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1597,7 +1597,7 @@
 		<ingredient count="720" id="6567" />
 		<!-- Adena -->
 		<ingredient count="180000" id="57" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
@@ -1605,7 +1605,7 @@
 		<ingredient count="4800" id="5103" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1613,7 +1613,7 @@
 		<ingredient count="4800" id="5838" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1621,7 +1621,7 @@
 		<ingredient count="2400" id="5097" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1629,7 +1629,7 @@
 		<ingredient count="2400" id="5841" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1637,7 +1637,7 @@
 		<ingredient count="1200" id="5100" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1645,7 +1645,7 @@
 		<ingredient count="1200" id="5844" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1653,7 +1653,7 @@
 		<ingredient count="1200" id="5108" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1661,7 +1661,7 @@
 		<ingredient count="1200" id="5845" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1669,7 +1669,7 @@
 		<ingredient count="960" id="5105" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1677,7 +1677,7 @@
 		<ingredient count="960" id="5846" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1685,7 +1685,7 @@
 		<ingredient count="480" id="5112" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1693,7 +1693,7 @@
 		<ingredient count="480" id="5848" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1701,7 +1701,7 @@
 		<ingredient count="480" id="5114" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1709,7 +1709,7 @@
 		<ingredient count="480" id="5850" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1717,7 +1717,7 @@
 		<ingredient count="480" id="5121" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1725,7 +1725,7 @@
 		<ingredient count="480" id="5852" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1733,7 +1733,7 @@
 		<ingredient count="480" id="5117" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1741,7 +1741,7 @@
 		<ingredient count="480" id="5854" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1749,7 +1749,7 @@
 		<ingredient count="96" id="6560" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -1757,7 +1757,7 @@
 		<ingredient count="96" id="6567" />
 		<!-- Adena -->
 		<ingredient count="24000" id="57" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -2085,7 +2085,7 @@
 		<ingredient count="180" id="5098" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2093,7 +2093,7 @@
 		<ingredient count="180" id="5839" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2101,7 +2101,7 @@
 		<ingredient count="180" id="5095" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2109,7 +2109,7 @@
 		<ingredient count="180" id="5840" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2117,7 +2117,7 @@
 		<ingredient count="45" id="5099" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2125,7 +2125,7 @@
 		<ingredient count="45" id="5842" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2133,7 +2133,7 @@
 		<ingredient count="30" id="5101" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2141,7 +2141,7 @@
 		<ingredient count="30" id="5843" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2149,7 +2149,7 @@
 		<ingredient count="18" id="5107" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2157,7 +2157,7 @@
 		<ingredient count="18" id="5847" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2165,7 +2165,7 @@
 		<ingredient count="18" id="5109" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2173,7 +2173,7 @@
 		<ingredient count="18" id="5849" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2181,7 +2181,7 @@
 		<ingredient count="22" id="5118" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2189,7 +2189,7 @@
 		<ingredient count="22" id="5851" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2197,7 +2197,7 @@
 		<ingredient count="22" id="5115" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2205,7 +2205,7 @@
 		<ingredient count="22" id="5853" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2213,7 +2213,7 @@
 		<ingredient count="18" id="5122" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2221,7 +2221,7 @@
 		<ingredient count="18" id="5855" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2229,7 +2229,7 @@
 		<ingredient count="4" id="6559" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2237,7 +2237,7 @@
 		<ingredient count="4" id="6566" />
 		<!-- Adena -->
 		<ingredient count="900" id="57" />
-		<!-- Crystal: B-Grade -->
+		<!-- Crystal (B-Grade) -->
 		<production count="1" id="1460" />
 	</item>
 	<item>
@@ -2245,7 +2245,7 @@
 		<ingredient count="300" id="5098" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2253,7 +2253,7 @@
 		<ingredient count="300" id="5839" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2261,7 +2261,7 @@
 		<ingredient count="300" id="5095" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2269,7 +2269,7 @@
 		<ingredient count="300" id="5840" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2277,7 +2277,7 @@
 		<ingredient count="75" id="5099" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2285,7 +2285,7 @@
 		<ingredient count="75" id="5842" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2293,7 +2293,7 @@
 		<ingredient count="50" id="5101" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2301,7 +2301,7 @@
 		<ingredient count="50" id="5843" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2309,7 +2309,7 @@
 		<ingredient count="30" id="5107" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2317,7 +2317,7 @@
 		<ingredient count="30" id="5847" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2325,7 +2325,7 @@
 		<ingredient count="30" id="5109" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2333,7 +2333,7 @@
 		<ingredient count="30" id="5849" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2341,7 +2341,7 @@
 		<ingredient count="38" id="5118" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2349,7 +2349,7 @@
 		<ingredient count="38" id="5851" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2357,7 +2357,7 @@
 		<ingredient count="38" id="5115" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2365,7 +2365,7 @@
 		<ingredient count="38" id="5853" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2373,7 +2373,7 @@
 		<ingredient count="30" id="5122" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2381,7 +2381,7 @@
 		<ingredient count="30" id="5855" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2389,7 +2389,7 @@
 		<ingredient count="7" id="6559" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2397,7 +2397,7 @@
 		<ingredient count="7" id="6566" />
 		<!-- Adena -->
 		<ingredient count="1500" id="57" />
-		<!-- Crystal: A-Grade -->
+		<!-- Crystal (A-Grade) -->
 		<production count="1" id="1461" />
 	</item>
 	<item>
@@ -2405,7 +2405,7 @@
 		<ingredient count="500" id="5098" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2413,7 +2413,7 @@
 		<ingredient count="500" id="5839" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2421,7 +2421,7 @@
 		<ingredient count="500" id="5095" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2429,7 +2429,7 @@
 		<ingredient count="500" id="5840" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2437,7 +2437,7 @@
 		<ingredient count="125" id="5099" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2445,7 +2445,7 @@
 		<ingredient count="125" id="5842" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2453,7 +2453,7 @@
 		<ingredient count="83" id="5101" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2461,7 +2461,7 @@
 		<ingredient count="83" id="5843" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2469,7 +2469,7 @@
 		<ingredient count="50" id="5107" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2477,7 +2477,7 @@
 		<ingredient count="50" id="5847" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2485,7 +2485,7 @@
 		<ingredient count="50" id="5109" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2493,7 +2493,7 @@
 		<ingredient count="50" id="5849" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2501,7 +2501,7 @@
 		<ingredient count="62" id="5118" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2509,7 +2509,7 @@
 		<ingredient count="62" id="5851" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2517,7 +2517,7 @@
 		<ingredient count="62" id="5115" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2525,7 +2525,7 @@
 		<ingredient count="62" id="5853" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2533,7 +2533,7 @@
 		<ingredient count="50" id="5122" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2541,7 +2541,7 @@
 		<ingredient count="50" id="5855" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2549,7 +2549,7 @@
 		<ingredient count="11" id="6559" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
@@ -2557,7 +2557,7 @@
 		<ingredient count="11" id="6566" />
 		<!-- Adena -->
 		<ingredient count="2500" id="57" />
-		<!-- Crystal: S Grade -->
+		<!-- Crystal (S-Grade) -->
 		<production count="1" id="1462" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/350980012.xml b/L2J_DataPack_BETA/dist/game/data/multisell/350980012.xml
index 173a836f9a072c98360029e933b5aa901b81b22f..2c56f9e0981c785db86d83f07887eb04af98c550 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/350980012.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/350980012.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Yellow Seed of Evil - Shard -->
 		<ingredient count="381" id="9593" />
@@ -29,7 +29,7 @@
 		<ingredient count="1" id="9597" />
 		<!-- Black Seed of Evil - Shard -->
 		<ingredient count="1" id="9598" />
-		<!-- Sealed Dynasty Gaiter Piece -->
+		<!-- Sealed Dynasty Gaiters Piece -->
 		<production count="3" id="9531" />
 	</item>
 	<item>
@@ -321,7 +321,7 @@
 		<ingredient count="1" id="9597" />
 		<!-- Black Seed of Evil - Shard -->
 		<ingredient count="2" id="9598" />
-		<!-- Recipe: Sealed Dynasty Gaiter (60%) -->
+		<!-- Recipe: Sealed Dynasty Gaiters (60%) -->
 		<production count="1" id="9483" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/364790001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/364790001.xml
index f853ddf430d466dc5ba249b2ca18943ca722e1c5..857ebf344e93f7e68e6a24f226fe7047b1525f66 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/364790001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/364790001.xml
@@ -1,9 +1,9 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Sirra's Blade - Haste -->
 		<ingredient count="1" id="8788" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -13,7 +13,7 @@
 	<item>
 		<!-- Sirra's Blade - Health -->
 		<ingredient count="1" id="8789" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -23,7 +23,7 @@
 	<item>
 		<!-- Sirra's Blade - Critical Poison -->
 		<ingredient count="1" id="8790" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -33,7 +33,7 @@
 	<item>
 		<!-- Sword of Ipos - Focus -->
 		<ingredient count="1" id="8791" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -43,7 +43,7 @@
 	<item>
 		<!-- Sword of Ipos - Haste -->
 		<ingredient count="1" id="8792" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -53,7 +53,7 @@
 	<item>
 		<!-- Sword of Ipos - Health -->
 		<ingredient count="1" id="8793" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -63,7 +63,7 @@
 	<item>
 		<!-- Barakiel's Axe - Health -->
 		<ingredient count="1" id="8794" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -73,7 +73,7 @@
 	<item>
 		<!-- Barakiel's Axe - Haste -->
 		<ingredient count="1" id="8795" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -83,7 +83,7 @@
 	<item>
 		<!-- Barakiel's Axe - Focus -->
 		<ingredient count="1" id="8796" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -93,7 +93,7 @@
 	<item>
 		<!-- Behemoth's Tuning Fork - Focus -->
 		<ingredient count="1" id="8797" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -103,7 +103,7 @@
 	<item>
 		<!-- Behemoth's Tuning Fork - Health -->
 		<ingredient count="1" id="8798" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -113,7 +113,7 @@
 	<item>
 		<!-- Behemoth's Tuning Fork - Anger -->
 		<ingredient count="1" id="8799" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -123,7 +123,7 @@
 	<item>
 		<!-- Naga Storm - Focus -->
 		<ingredient count="1" id="8800" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -133,7 +133,7 @@
 	<item>
 		<!-- Naga Storm - Critical Damage -->
 		<ingredient count="1" id="8801" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -143,7 +143,7 @@
 	<item>
 		<!-- Naga Storm - Back Blow -->
 		<ingredient count="1" id="8802" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -153,7 +153,7 @@
 	<item>
 		<!-- Tiphon's Spear - Critical Stun -->
 		<ingredient count="1" id="8803" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -163,17 +163,17 @@
 	<item>
 		<!-- Tiphon's Spear - Towering Blow -->
 		<ingredient count="1" id="8804" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
-		<!-- Tiphon's Spear {PvP} - Long Blow -->
+		<!-- Tiphon's Spear {PvP} - Towering Blow -->
 		<production count="1" id="10683" />
 	</item>
 	<item>
 		<!-- Tiphon's Spear - Wild Blow -->
 		<ingredient count="1" id="8805" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -183,7 +183,7 @@
 	<item>
 		<!-- Shyeed's Bow - Cheap Shot -->
 		<ingredient count="1" id="8806" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -193,7 +193,7 @@
 	<item>
 		<!-- Shyeed's Bow - Focus -->
 		<ingredient count="1" id="8807" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -203,7 +203,7 @@
 	<item>
 		<!-- Shyeed's Bow - Quick Recovery -->
 		<ingredient count="1" id="8808" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -213,7 +213,7 @@
 	<item>
 		<!-- Sobekk's Hurricane - Rsk. Haste -->
 		<ingredient count="1" id="8809" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -223,7 +223,7 @@
 	<item>
 		<!-- Sobekk's Hurricane - Haste -->
 		<ingredient count="1" id="8810" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -233,7 +233,7 @@
 	<item>
 		<!-- Sobekk's Hurricane - Critical Drain -->
 		<ingredient count="1" id="8811" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -243,7 +243,7 @@
 	<item>
 		<!-- Themis' Tongue - Mana Up -->
 		<ingredient count="1" id="8812" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -251,19 +251,19 @@
 		<production count="1" id="10691" />
 	</item>
 	<item>
-		<!-- Themis' Tongue - Magic Mental Shield -->
+		<!-- Themis' Tongue - Mental Shield -->
 		<ingredient count="1" id="8813" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
-		<!-- Themis' Tongue {PvP} - Magic Mental Shield -->
+		<!-- Themis' Tongue {PvP} - Mental Shield -->
 		<production count="1" id="10692" />
 	</item>
 	<item>
 		<!-- Themis' Tongue - Magic Focus -->
 		<ingredient count="1" id="8814" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -273,7 +273,7 @@
 	<item>
 		<!-- Cabrio's Hand - Conversion -->
 		<ingredient count="1" id="8815" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -283,7 +283,7 @@
 	<item>
 		<!-- Cabrio's Hand - Mana Up -->
 		<ingredient count="1" id="8816" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -293,7 +293,7 @@
 	<item>
 		<!-- Cabrio's Hand - Magic Silence -->
 		<ingredient count="1" id="8817" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -303,7 +303,7 @@
 	<item>
 		<!-- Daimon Crystal - Mana Up -->
 		<ingredient count="1" id="8818" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -313,7 +313,7 @@
 	<item>
 		<!-- Daimon Crystal - Acumen -->
 		<ingredient count="1" id="8819" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -321,49 +321,49 @@
 		<production count="1" id="10698" />
 	</item>
 	<item>
-		<!-- Daimon Crystal - Magic Mental Shield -->
+		<!-- Daimon Crystal - Mental Shield -->
 		<ingredient count="1" id="8820" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
-		<!-- Daimon Crystal {PvP} - Magic Mental Shield -->
+		<!-- Daimon Crystal {PvP} - Mental Shield -->
 		<production count="1" id="10699" />
 	</item>
 	<item>
 		<!-- Eclair Bijou - Haste -->
 		<ingredient count="1" id="9353" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
-		<!-- Eclair Bijou {PvP} - Haste -->
+		<!-- ?clair Bijou {PvP} - Haste -->
 		<production count="1" id="10700" />
 	</item>
 	<item>
 		<!-- Eclair Bijou - Health -->
 		<ingredient count="1" id="9354" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
-		<!-- Eclair Bijou - PvP - Health -->
+		<!-- Eclair Bijou {PvP} - Health -->
 		<production count="1" id="10701" />
 	</item>
 	<item>
 		<!-- Eclair Bijou - Critical Poison -->
 		<ingredient count="1" id="9355" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
-		<!-- Eclair Bijou - PvP - Critical Poison -->
+		<!-- Eclair Bijou {PvP} - Critical Poison -->
 		<production count="1" id="10702" />
 	</item>
 	<item>
 		<!-- Durendal - Focus -->
 		<ingredient count="1" id="9357" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -373,7 +373,7 @@
 	<item>
 		<!-- Durendal - Haste -->
 		<ingredient count="1" id="9358" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -383,7 +383,7 @@
 	<item>
 		<!-- Durendal - Health -->
 		<ingredient count="1" id="9359" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -393,7 +393,7 @@
 	<item>
 		<!-- Screaming Vengeance - Cheap Shot -->
 		<ingredient count="1" id="9361" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -403,7 +403,7 @@
 	<item>
 		<!-- Screaming Vengeance - Focus -->
 		<ingredient count="1" id="9362" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -413,7 +413,7 @@
 	<item>
 		<!-- Screaming Vengeance - Quick Recovery -->
 		<ingredient count="1" id="9363" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -423,7 +423,7 @@
 	<item>
 		<!-- Damascus * Tallum Blade -->
 		<ingredient count="1" id="8938" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -433,7 +433,7 @@
 	<item>
 		<!-- Forgotten Blade - Haste -->
 		<ingredient count="1" id="6581" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -443,7 +443,7 @@
 	<item>
 		<!-- Forgotten Blade - Health -->
 		<ingredient count="1" id="6582" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -453,7 +453,7 @@
 	<item>
 		<!-- Forgotten Blade - Focus -->
 		<ingredient count="1" id="6583" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -463,7 +463,7 @@
 	<item>
 		<!-- Heavens Divider - Haste -->
 		<ingredient count="1" id="6605" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -473,7 +473,7 @@
 	<item>
 		<!-- Heavens Divider - Health -->
 		<ingredient count="1" id="6606" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -483,7 +483,7 @@
 	<item>
 		<!-- Heavens Divider - Focus -->
 		<ingredient count="1" id="6607" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -493,7 +493,7 @@
 	<item>
 		<!-- Basalt Battlehammer - HP Drain -->
 		<ingredient count="1" id="6584" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -503,7 +503,7 @@
 	<item>
 		<!-- Basalt Battlehammer - Health -->
 		<ingredient count="1" id="6585" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -513,7 +513,7 @@
 	<item>
 		<!-- Basalt Battlehammer - HP Regeneration -->
 		<ingredient count="1" id="6586" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -523,7 +523,7 @@
 	<item>
 		<!-- Dragon Hunter Axe - HP Regeneration -->
 		<ingredient count="1" id="6596" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -533,7 +533,7 @@
 	<item>
 		<!-- Dragon Hunter Axe - Health -->
 		<ingredient count="1" id="6597" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -543,7 +543,7 @@
 	<item>
 		<!-- Dragon Hunter Axe - HP Drain -->
 		<ingredient count="1" id="6598" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -553,7 +553,7 @@
 	<item>
 		<!-- Angel Slayer - Critical Damage -->
 		<ingredient count="1" id="6590" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -563,7 +563,7 @@
 	<item>
 		<!-- Angel Slayer - HP Drain -->
 		<ingredient count="1" id="6591" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -573,7 +573,7 @@
 	<item>
 		<!-- Angel Slayer - Haste -->
 		<ingredient count="1" id="6592" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -583,7 +583,7 @@
 	<item>
 		<!-- Saint Spear - Health -->
 		<ingredient count="1" id="6599" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -593,7 +593,7 @@
 	<item>
 		<!-- Saint Spear - Guidance -->
 		<ingredient count="1" id="6600" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -603,7 +603,7 @@
 	<item>
 		<!-- Saint Spear - Haste -->
 		<ingredient count="1" id="6601" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -613,7 +613,7 @@
 	<item>
 		<!-- Demon Splinter - Focus -->
 		<ingredient count="1" id="6602" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -623,7 +623,7 @@
 	<item>
 		<!-- Demon Splinter - Health -->
 		<ingredient count="1" id="6603" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -633,7 +633,7 @@
 	<item>
 		<!-- Demon Splinter - Critical Stun -->
 		<ingredient count="1" id="6604" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -643,7 +643,7 @@
 	<item>
 		<!-- Arcana Mace - Acumen -->
 		<ingredient count="1" id="6608" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -653,7 +653,7 @@
 	<item>
 		<!-- Arcana Mace - MP Regeneration -->
 		<ingredient count="1" id="6609" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -663,7 +663,7 @@
 	<item>
 		<!-- Arcana Mace - Mana Up -->
 		<ingredient count="1" id="6610" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -673,7 +673,7 @@
 	<item>
 		<!-- Imperial Staff - Empower -->
 		<ingredient count="1" id="6587" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -683,7 +683,7 @@
 	<item>
 		<!-- Imperial Staff - MP Regeneration -->
 		<ingredient count="1" id="6588" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -693,7 +693,7 @@
 	<item>
 		<!-- Imperial Staff - Magic Hold -->
 		<ingredient count="1" id="6589" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -703,7 +703,7 @@
 	<item>
 		<!-- Draconic Bow - Cheap Shot -->
 		<ingredient count="1" id="7576" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -713,7 +713,7 @@
 	<item>
 		<!-- Draconic Bow - Focus -->
 		<ingredient count="1" id="7577" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -723,7 +723,7 @@
 	<item>
 		<!-- Draconic Bow - Critical Slow -->
 		<ingredient count="1" id="7578" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -733,7 +733,7 @@
 	<item>
 		<!-- Laevateinn - Haste -->
 		<ingredient count="1" id="9365" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -743,7 +743,7 @@
 	<item>
 		<!-- Laevateinn - Health -->
 		<ingredient count="1" id="9366" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -753,7 +753,7 @@
 	<item>
 		<!-- Laevateinn - Focus -->
 		<ingredient count="1" id="9367" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -763,7 +763,7 @@
 	<item>
 		<!-- Gram - Haste -->
 		<ingredient count="1" id="9369" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -773,7 +773,7 @@
 	<item>
 		<!-- Gram - Health -->
 		<ingredient count="1" id="9370" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -783,7 +783,7 @@
 	<item>
 		<!-- Gram - Focus -->
 		<ingredient count="1" id="9371" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -791,9 +791,9 @@
 		<production count="1" id="10745" />
 	</item>
 	<item>
-		<!-- Sarnga - Cheap Shot -->
+		<!-- Sarunga - Cheap Shot -->
 		<ingredient count="1" id="9373" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -801,39 +801,39 @@
 		<production count="1" id="10746" />
 	</item>
 	<item>
-		<!-- Sarnga - Focus -->
+		<!-- Sarunga - Focus -->
 		<ingredient count="1" id="9374" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
-		<!-- Sarunga - PvP - Focus -->
+		<!-- Sarunga {PvP} - Focus -->
 		<production count="1" id="10747" />
 	</item>
 	<item>
-		<!-- Sarnga - Critical Slow -->
+		<!-- Sarunga - Critical Slow -->
 		<ingredient count="1" id="9375" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
-		<!-- Sarunga - PvP - Critical Slow -->
+		<!-- Sarunga {PvP} - Critical Slow -->
 		<production count="1" id="10748" />
 	</item>
 	<item>
 		<!-- Tallum Blade*Dark Legion's Edge -->
 		<ingredient count="1" id="6580" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
-		<!-- Tallum Blade*Dark Legion {PvP} -->
+		<!-- Tallum Blade*Dark Legion's Edge {PvP} -->
 		<production count="1" id="10749" />
 	</item>
 	<item>
 		<!-- Dynasty Sword - Focus -->
 		<ingredient count="1" id="9854" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -843,27 +843,27 @@
 	<item>
 		<!-- Dynasty Sword - Health -->
 		<ingredient count="1" id="9855" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
-		<!-- Dynasty Sword - PvP - Health -->
+		<!-- Dynasty Sword {PvP} - Health -->
 		<production count="1" id="10751" />
 	</item>
 	<item>
 		<!-- Dynasty Sword - Light -->
 		<ingredient count="1" id="9856" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
-		<!-- Dynasty Sword - PvP - Light -->
+		<!-- Dynasty Sword {PvP} - Light -->
 		<production count="1" id="10752" />
 	</item>
 	<item>
 		<!-- Dynasty Blade - Focus -->
 		<ingredient count="1" id="9857" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -873,27 +873,27 @@
 	<item>
 		<!-- Dynasty Blade - Health -->
 		<ingredient count="1" id="9858" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
-		<!-- Dynasty Blade - PvP - Health -->
+		<!-- Dynasty Blade {PvP} - Health -->
 		<production count="1" id="10754" />
 	</item>
 	<item>
 		<!-- Dynasty Blade - Light -->
 		<ingredient count="1" id="9859" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
-		<!-- Dynasty Blade - PvP - Light -->
+		<!-- Dynasty Blade {PvP} - Light -->
 		<production count="1" id="10755" />
 	</item>
 	<item>
 		<!-- Dynasty Cudgel - Anger -->
 		<ingredient count="1" id="9872" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -903,7 +903,7 @@
 	<item>
 		<!-- Dynasty Cudgel - Health -->
 		<ingredient count="1" id="9873" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -913,7 +913,7 @@
 	<item>
 		<!-- Dynasty Cudgel - Rsk. Focus -->
 		<ingredient count="1" id="9874" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -923,7 +923,7 @@
 	<item>
 		<!-- Dynasty Crusher - Anger -->
 		<ingredient count="1" id="10530" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -933,7 +933,7 @@
 	<item>
 		<!-- Dynasty Crusher - Health -->
 		<ingredient count="1" id="10531" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -943,7 +943,7 @@
 	<item>
 		<!-- Dynasty Crusher - Rsk. Focus -->
 		<ingredient count="1" id="10532" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -953,7 +953,7 @@
 	<item>
 		<!-- Dynasty Knife - Focus -->
 		<ingredient count="1" id="9866" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -963,7 +963,7 @@
 	<item>
 		<!-- Dynasty Knife - Evasion -->
 		<ingredient count="1" id="9867" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -973,7 +973,7 @@
 	<item>
 		<!-- Dynasty Knife - Critical Damage -->
 		<ingredient count="1" id="9868" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -983,7 +983,7 @@
 	<item>
 		<!-- Dynasty Halberd - Anger -->
 		<ingredient count="1" id="9869" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -993,7 +993,7 @@
 	<item>
 		<!-- Dynasty Halberd - Critical Stun -->
 		<ingredient count="1" id="9870" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -1003,7 +1003,7 @@
 	<item>
 		<!-- Dynasty Halberd - Light -->
 		<ingredient count="1" id="9871" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -1013,7 +1013,7 @@
 	<item>
 		<!-- Dynasty Bagh-Nakh - Rsk. Evasion -->
 		<ingredient count="1" id="9878" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -1023,7 +1023,7 @@
 	<item>
 		<!-- Dynasty Bagh-Nakh - Focus -->
 		<ingredient count="1" id="9879" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -1033,7 +1033,7 @@
 	<item>
 		<!-- Dynasty Bagh-Nakh - Haste -->
 		<ingredient count="1" id="9880" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -1043,7 +1043,7 @@
 	<item>
 		<!-- Dynasty Phantom - Acumen -->
 		<ingredient count="1" id="9860" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -1053,7 +1053,7 @@
 	<item>
 		<!-- Dynasty Phantom - Mana Up -->
 		<ingredient count="1" id="9861" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -1063,7 +1063,7 @@
 	<item>
 		<!-- Dynasty Phantom - Conversion -->
 		<ingredient count="1" id="9862" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -1073,7 +1073,7 @@
 	<item>
 		<!-- Dynasty Mace - Mana Up -->
 		<ingredient count="1" id="9875" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -1083,7 +1083,7 @@
 	<item>
 		<!-- Dynasty Mace - Conversion -->
 		<ingredient count="1" id="9876" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -1093,7 +1093,7 @@
 	<item>
 		<!-- Dynasty Mace - Acumen -->
 		<ingredient count="1" id="9877" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -1103,7 +1103,7 @@
 	<item>
 		<!-- Dynasty Staff - Mana Up -->
 		<ingredient count="1" id="10527" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -1113,7 +1113,7 @@
 	<item>
 		<!-- Dynasty Staff - Conversion -->
 		<ingredient count="1" id="10528" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -1123,7 +1123,7 @@
 	<item>
 		<!-- Dynasty Staff - Acumen -->
 		<ingredient count="1" id="10529" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -1133,7 +1133,7 @@
 	<item>
 		<!-- Dynasty Bow - Cheap Shot -->
 		<ingredient count="1" id="9863" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -1143,7 +1143,7 @@
 	<item>
 		<!-- Dynasty Bow - Guidance -->
 		<ingredient count="1" id="9864" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -1153,7 +1153,7 @@
 	<item>
 		<!-- Dynasty Bow - Focus -->
 		<ingredient count="1" id="9865" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -1163,7 +1163,7 @@
 	<item>
 		<!-- Dynasty Rapier - Focus -->
 		<ingredient count="1" id="9377" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -1173,7 +1173,7 @@
 	<item>
 		<!-- Dynasty Rapier - Health -->
 		<ingredient count="1" id="9378" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -1183,7 +1183,7 @@
 	<item>
 		<!-- Dynasty Rapier - Light -->
 		<ingredient count="1" id="9379" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -1193,7 +1193,7 @@
 	<item>
 		<!-- Dynasty Ancient Sword - Focus -->
 		<ingredient count="1" id="9381" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -1203,7 +1203,7 @@
 	<item>
 		<!-- Dynasty Ancient Sword - Health -->
 		<ingredient count="1" id="9382" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -1213,7 +1213,7 @@
 	<item>
 		<!-- Dynasty Ancient Sword - Light -->
 		<ingredient count="1" id="9383" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -1223,7 +1223,7 @@
 	<item>
 		<!-- Dynasty Crossbow - Cheap Shot -->
 		<ingredient count="1" id="9385" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -1233,27 +1233,27 @@
 	<item>
 		<!-- Dynasty Crossbow - Guidance -->
 		<ingredient count="1" id="9386" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
-		<!-- Dynasty Crossbow - PvP - Guidance -->
+		<!-- Dynasty Crossbow {PvP} - Guidance -->
 		<production count="1" id="10790" />
 	</item>
 	<item>
 		<!-- Dynasty Crossbow - Focus -->
 		<ingredient count="1" id="9387" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
-		<!-- Dynasty Crossbow - PvP - Focus -->
+		<!-- Dynasty Crossbow {PvP} - Focus -->
 		<production count="1" id="10791" />
 	</item>
 	<item>
 		<!-- Dynasty Dual Sword -->
 		<ingredient count="1" id="10004" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -1263,7 +1263,7 @@
 	<item>
 		<!-- Dynasty Dual Daggers -->
 		<ingredient count="1" id="13882" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="43950" id="-300" />
 		<!-- Adena -->
 		<ingredient count="4395050" id="57" />
@@ -1273,7 +1273,7 @@
 	<item>
 		<!-- Dynasty Dual Daggers - Great Gale -->
 		<ingredient count="1" id="14526" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="43950" id="-300" />
 		<!-- Adena -->
 		<ingredient count="4395050" id="57" />
@@ -1283,7 +1283,7 @@
 	<item>
 		<!-- Sirra's Blade - Landslide - Haste -->
 		<ingredient count="1" id="11170" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -1293,7 +1293,7 @@
 	<item>
 		<!-- Sirra's Blade - Landslide - Health -->
 		<ingredient count="1" id="11171" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -1303,7 +1303,7 @@
 	<item>
 		<!-- Sirra's Blade - Landslide - Critical Poison -->
 		<ingredient count="1" id="11172" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -1313,7 +1313,7 @@
 	<item>
 		<!-- Sword of Ipos - Earth - Focus -->
 		<ingredient count="1" id="11162" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -1323,7 +1323,7 @@
 	<item>
 		<!-- Sword of Ipos - Earth - Haste -->
 		<ingredient count="1" id="11163" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -1333,7 +1333,7 @@
 	<item>
 		<!-- Sword of Ipos - Earth - Health -->
 		<ingredient count="1" id="11164" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -1343,7 +1343,7 @@
 	<item>
 		<!-- Barakiel's Axe - On Fire - Health -->
 		<ingredient count="1" id="11142" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -1353,7 +1353,7 @@
 	<item>
 		<!-- Barakiel's Axe - On Fire - Haste -->
 		<ingredient count="1" id="11143" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -1363,7 +1363,7 @@
 	<item>
 		<!-- Barakiel's Axe - On Fire - Focus -->
 		<ingredient count="1" id="11144" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -1373,7 +1373,7 @@
 	<item>
 		<!-- Behemoth's Tuning Fork - Destruction - Focus -->
 		<ingredient count="1" id="11150" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -1383,7 +1383,7 @@
 	<item>
 		<!-- Behemoth's Tuning Fork - Destruction - Health -->
 		<ingredient count="1" id="11151" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -1393,7 +1393,7 @@
 	<item>
 		<!-- Behemoth's Tuning Fork - Destruction - Anger -->
 		<ingredient count="1" id="11152" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -1403,7 +1403,7 @@
 	<item>
 		<!-- Naga Storm - Molar - Focus -->
 		<ingredient count="1" id="11134" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -1413,27 +1413,27 @@
 	<item>
 		<!-- Naga Storm - Molar - Critical Damage -->
 		<ingredient count="1" id="11135" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
-		<!-- Naga Storm - Molar {PvP} - Crt. Damage -->
+		<!-- Naga Storm - Molar {PvP} - Critical Damage -->
 		<production count="1" id="12853" />
 	</item>
 	<item>
 		<!-- Naga Storm - Molar - Back Blow -->
 		<ingredient count="1" id="11136" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
-		<!-- Naga Storm - Molar {PvP} - Backblow -->
+		<!-- Naga Storm - Molar {PvP} - Back Blow -->
 		<production count="1" id="12854" />
 	</item>
 	<item>
 		<!-- Tiphon's Spear - Landslide - Critical Stun -->
 		<ingredient count="1" id="11178" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -1441,19 +1441,19 @@
 		<production count="1" id="12885" />
 	</item>
 	<item>
-		<!-- Tiphon's Spear - Landslide - Long Blow -->
+		<!-- Tiphon's Spear - Landslide - Towering Blow -->
 		<ingredient count="1" id="11179" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
-		<!-- Tiphon's Spear - Landslide {PvP} - Longblow -->
+		<!-- Tiphon's Spear - Landslide {PvP} - Towering Blow -->
 		<production count="1" id="12886" />
 	</item>
 	<item>
 		<!-- Tiphon's Spear - Landslide - Wild Blow -->
 		<ingredient count="1" id="11180" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -1463,7 +1463,7 @@
 	<item>
 		<!-- Shyeed's Bow - Concentration - Cheap Shot -->
 		<ingredient count="1" id="11158" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -1473,7 +1473,7 @@
 	<item>
 		<!-- Shyeed's Bow - Concentration - Focus -->
 		<ingredient count="1" id="11159" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -1483,7 +1483,7 @@
 	<item>
 		<!-- Shyeed's Bow - Concentration - Quick Recovery -->
 		<ingredient count="1" id="11160" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -1493,7 +1493,7 @@
 	<item>
 		<!-- Sobekk's Hurricane - Landslide - Rsk. Haste -->
 		<ingredient count="1" id="11166" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -1503,7 +1503,7 @@
 	<item>
 		<!-- Sobekk's Hurricane - Landslide - Haste -->
 		<ingredient count="1" id="11167" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -1513,17 +1513,17 @@
 	<item>
 		<!-- Sobekk's Hurricane - Landslide - Critical Drain -->
 		<ingredient count="1" id="11168" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
-		<!-- Sobekk's Hurricane - Landslide {PvP} - Crt. Drain -->
+		<!-- Sobekk's Hurricane - Landslide {PvP} - Critical Drain -->
 		<production count="1" id="12878" />
 	</item>
 	<item>
 		<!-- Themis' Tongue - Cleverness - Mana Up -->
 		<ingredient count="1" id="11183" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -1531,19 +1531,19 @@
 		<production count="1" id="12889" />
 	</item>
 	<item>
-		<!-- Themis' Tongue - Cleverness - Magic Mental Shield -->
+		<!-- Themis' Tongue - Cleverness - Mental Shield -->
 		<ingredient count="1" id="11184" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
-		<!-- Themis' Tongue - Cleverness {PvP} - Magic Mental Shield -->
+		<!-- Themis' Tongue - Cleverness {PvP} - Mental Shield -->
 		<production count="1" id="12890" />
 	</item>
 	<item>
 		<!-- Themis' Tongue - Cleverness - Magic Focus -->
 		<ingredient count="1" id="11185" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -1553,7 +1553,7 @@
 	<item>
 		<!-- Cabrio's Hand - Cleverness - Conversion -->
 		<ingredient count="1" id="11187" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -1563,7 +1563,7 @@
 	<item>
 		<!-- Cabrio's Hand - Cleverness - Mana Up -->
 		<ingredient count="1" id="11188" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -1573,7 +1573,7 @@
 	<item>
 		<!-- Cabrio's Hand - Cleverness - Magic Silence -->
 		<ingredient count="1" id="11189" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -1583,7 +1583,7 @@
 	<item>
 		<!-- Daimon Crystal - Wisdom - Mana Up -->
 		<ingredient count="1" id="11138" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -1593,7 +1593,7 @@
 	<item>
 		<!-- Daimon Crystal - Wisdom - Acumen -->
 		<ingredient count="1" id="11139" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -1601,49 +1601,49 @@
 		<production count="1" id="12856" />
 	</item>
 	<item>
-		<!-- Daimon Crystal - Wisdom - Magic Mental Shield -->
+		<!-- Daimon Crystal - Wisdom - Mental Shield -->
 		<ingredient count="1" id="11140" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
-		<!-- Daimon Crystal - Wisdom {PvP} - Magic Mental Shield -->
+		<!-- Daimon Crystal - Wisdom {PvP} - Mental Shield -->
 		<production count="1" id="12857" />
 	</item>
 	<item>
 		<!-- Eclair Bijou - Landslide - Haste -->
 		<ingredient count="1" id="11174" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
-		<!-- Eclair Bijou - Landslide {PvP} - Haste -->
+		<!-- ?clair Bijou - Landslide {PvP} - Haste -->
 		<production count="1" id="12882" />
 	</item>
 	<item>
 		<!-- Eclair Bijou - Landslide - Health -->
 		<ingredient count="1" id="11175" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
-		<!-- Eclair Bijou - Landslide {PvP} - Health -->
+		<!-- ?clair Bijou - Landslide {PvP} - Health -->
 		<production count="1" id="12883" />
 	</item>
 	<item>
 		<!-- Eclair Bijou - Landslide - Critical Poison -->
 		<ingredient count="1" id="11176" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
-		<!-- Eclair Bijou - Landslide {PvP} - Critical Poison -->
+		<!-- ?clair Bijou - Landslide {PvP} - Critical Poison -->
 		<production count="1" id="12884" />
 	</item>
 	<item>
 		<!-- Bultgang - Earth - Focus -->
 		<ingredient count="1" id="11154" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -1653,7 +1653,7 @@
 	<item>
 		<!-- Bultgang - Earth - Haste -->
 		<ingredient count="1" id="11155" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -1663,7 +1663,7 @@
 	<item>
 		<!-- Bultgang - Earth - Health -->
 		<ingredient count="1" id="11156" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -1673,7 +1673,7 @@
 	<item>
 		<!-- Screaming Vengeance - Concentration - Cheap Shot -->
 		<ingredient count="1" id="11146" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -1683,7 +1683,7 @@
 	<item>
 		<!-- Screaming Vengeance - Concentration - Focus -->
 		<ingredient count="1" id="11147" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -1693,7 +1693,7 @@
 	<item>
 		<!-- Screaming Vengeance - Concentration - Quick Recovery -->
 		<ingredient count="1" id="11148" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -1703,7 +1703,7 @@
 	<item>
 		<!-- Tallum Blade*Damascus - Landslide -->
 		<ingredient count="1" id="11181" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8091" id="-300" />
 		<!-- Adena -->
 		<ingredient count="809050" id="57" />
@@ -1713,7 +1713,7 @@
 	<item>
 		<!-- Forgotten Blade - Lightning - Haste -->
 		<ingredient count="1" id="11236" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -1723,7 +1723,7 @@
 	<item>
 		<!-- Forgotten Blade - Lightning - Health -->
 		<ingredient count="1" id="11237" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -1733,7 +1733,7 @@
 	<item>
 		<!-- Forgotten Blade - Lightning - Focus -->
 		<ingredient count="1" id="11238" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -1743,7 +1743,7 @@
 	<item>
 		<!-- Heaven's Divider - Thunder - Haste -->
 		<ingredient count="1" id="11240" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -1753,7 +1753,7 @@
 	<item>
 		<!-- Heaven's Divider - Thunder - Health -->
 		<ingredient count="1" id="11241" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -1763,7 +1763,7 @@
 	<item>
 		<!-- Heaven's Divider - Thunder - Focus -->
 		<ingredient count="1" id="11242" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -1773,7 +1773,7 @@
 	<item>
 		<!-- Basalt Battlehammer - Concentration - HP Drain -->
 		<ingredient count="1" id="11211" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -1783,7 +1783,7 @@
 	<item>
 		<!-- Basalt Battlehammer - Concentration - Health -->
 		<ingredient count="1" id="11212" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -1793,7 +1793,7 @@
 	<item>
 		<!-- Basalt Battlehammer - Concentration - HP Regeneration -->
 		<ingredient count="1" id="11213" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -1803,7 +1803,7 @@
 	<item>
 		<!-- Dragon Hunter Axe - Thunder - HP Regeneration -->
 		<ingredient count="1" id="11203" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -1813,7 +1813,7 @@
 	<item>
 		<!-- Dragon Hunter Axe - Thunder - Health -->
 		<ingredient count="1" id="11204" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -1823,7 +1823,7 @@
 	<item>
 		<!-- Dragon Hunter Axe - Thunder - HP Drain -->
 		<ingredient count="1" id="11205" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -1833,17 +1833,17 @@
 	<item>
 		<!-- Angel Slayer - Concentration - Critical Damage -->
 		<ingredient count="1" id="11227" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
-		<!-- Angel Slayer - Concentration {PvP} - Crt. Damage -->
+		<!-- Angel Slayer - Concentration {PvP} - Critical Damage -->
 		<production count="1" id="12922" />
 	</item>
 	<item>
 		<!-- Angel Slayer - Concentration - HP Drain -->
 		<ingredient count="1" id="11228" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -1853,7 +1853,7 @@
 	<item>
 		<!-- Angel Slayer - Concentration - Haste -->
 		<ingredient count="1" id="11229" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -1863,7 +1863,7 @@
 	<item>
 		<!-- Saint Spear - Destruction - Health -->
 		<ingredient count="1" id="11219" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -1873,7 +1873,7 @@
 	<item>
 		<!-- Saint Spear - Destruction - Guidance -->
 		<ingredient count="1" id="11220" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -1883,7 +1883,7 @@
 	<item>
 		<!-- Saint Spear - Destruction - Haste -->
 		<ingredient count="1" id="11221" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -1893,7 +1893,7 @@
 	<item>
 		<!-- Demon Splinter - Thunder - Focus -->
 		<ingredient count="1" id="11195" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -1903,7 +1903,7 @@
 	<item>
 		<!-- Demon Splinter - Thunder - Health -->
 		<ingredient count="1" id="11196" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -1913,7 +1913,7 @@
 	<item>
 		<!-- Demon Splinter - Thunder - Critical Stun -->
 		<ingredient count="1" id="11197" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -1923,7 +1923,7 @@
 	<item>
 		<!-- Arcana Mace - Nature - Acumen -->
 		<ingredient count="1" id="11223" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -1933,7 +1933,7 @@
 	<item>
 		<!-- Arcana Mace - Nature - MP Regeneration -->
 		<ingredient count="1" id="11224" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -1943,7 +1943,7 @@
 	<item>
 		<!-- Arcana Mace - Nature - Mana Up -->
 		<ingredient count="1" id="11225" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -1953,7 +1953,7 @@
 	<item>
 		<!-- Imperial Staff - Nature - Empower -->
 		<ingredient count="1" id="11231" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -1963,7 +1963,7 @@
 	<item>
 		<!-- Imperial Staff - Nature - MP Regeneration -->
 		<ingredient count="1" id="11232" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -1973,7 +1973,7 @@
 	<item>
 		<!-- Imperial Staff - Nature - Magic Hold -->
 		<ingredient count="1" id="11233" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -1983,7 +1983,7 @@
 	<item>
 		<!-- Draconic Bow - Earth - Cheap Shot -->
 		<ingredient count="1" id="11199" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -1993,7 +1993,7 @@
 	<item>
 		<!-- Draconic Bow - Earth - Focus -->
 		<ingredient count="1" id="11200" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -2003,17 +2003,17 @@
 	<item>
 		<!-- Draconic Bow - Earth - Critical Slow -->
 		<ingredient count="1" id="11201" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
-		<!-- Draconic Bow - Earth {PvP} - Crt. Slow -->
+		<!-- Draconic Bow - Earth {PvP} - Critical Slow -->
 		<production count="1" id="12903" />
 	</item>
 	<item>
 		<!-- Laevateinn - Lightning - Haste -->
 		<ingredient count="1" id="11207" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -2023,7 +2023,7 @@
 	<item>
 		<!-- Laevateinn - Lightning - Health -->
 		<ingredient count="1" id="11208" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -2033,7 +2033,7 @@
 	<item>
 		<!-- Laevateinn - Lightning - Focus -->
 		<ingredient count="1" id="11209" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -2043,7 +2043,7 @@
 	<item>
 		<!-- Gram - Thunder - Haste -->
 		<ingredient count="1" id="11191" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -2053,7 +2053,7 @@
 	<item>
 		<!-- Gram - Thunder - Health -->
 		<ingredient count="1" id="11192" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -2063,7 +2063,7 @@
 	<item>
 		<!-- Gram - Thunder - Focus -->
 		<ingredient count="1" id="11193" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -2073,7 +2073,7 @@
 	<item>
 		<!-- Sarunga - Earth - Cheap Shot -->
 		<ingredient count="1" id="11215" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -2083,7 +2083,7 @@
 	<item>
 		<!-- Sarunga - Earth - Focus -->
 		<ingredient count="1" id="11216" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
@@ -2093,27 +2093,27 @@
 	<item>
 		<!-- Sarunga - Earth - Critical Slow -->
 		<ingredient count="1" id="11217" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
-		<!-- Sarunga - Earth {PvP} - Crt. Slow -->
+		<!-- Sarunga - Earth {PvP} - Critical Slow -->
 		<production count="1" id="12915" />
 	</item>
 	<item>
 		<!-- Tallum Blade*Dark Legion's Edge - Lightning -->
 		<ingredient count="1" id="11234" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11545" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1154520" id="57" />
-		<!-- Tallum Blade*Dark Legion - Lightning {PvP} -->
+		<!-- Tallum Blade*Dark Legion's Edge - Lightning {PvP} -->
 		<production count="1" id="12928" />
 	</item>
 	<item>
 		<!-- Dynasty Sword - Earth - Focus -->
 		<ingredient count="1" id="11273" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2123,7 +2123,7 @@
 	<item>
 		<!-- Dynasty Sword - Earth - Health -->
 		<ingredient count="1" id="11274" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2133,7 +2133,7 @@
 	<item>
 		<!-- Dynasty Sword - Earth - Light -->
 		<ingredient count="1" id="11275" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2143,7 +2143,7 @@
 	<item>
 		<!-- Dynasty Blade - Great Gale - Focus -->
 		<ingredient count="1" id="11269" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2153,7 +2153,7 @@
 	<item>
 		<!-- Dynasty Blade - Great Gale - Health -->
 		<ingredient count="1" id="11270" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2163,7 +2163,7 @@
 	<item>
 		<!-- Dynasty Blade - Great Gale - Light -->
 		<ingredient count="1" id="11271" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2173,7 +2173,7 @@
 	<item>
 		<!-- Dynasty Cudgel - Landslide - Anger -->
 		<ingredient count="1" id="11281" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2183,7 +2183,7 @@
 	<item>
 		<!-- Dynasty Cudgel - Landslide - Health -->
 		<ingredient count="1" id="11282" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2193,7 +2193,7 @@
 	<item>
 		<!-- Dynasty Cudgel - Landslide - Rsk. Focus -->
 		<ingredient count="1" id="11283" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2203,7 +2203,7 @@
 	<item>
 		<!-- Dynasty Crusher - Great Gale - Anger -->
 		<ingredient count="1" id="11285" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2213,7 +2213,7 @@
 	<item>
 		<!-- Dynasty Crusher - Great Gale - Health -->
 		<ingredient count="1" id="11286" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2223,7 +2223,7 @@
 	<item>
 		<!-- Dynasty Crusher - Great Gale - Rsk. Focus -->
 		<ingredient count="1" id="11287" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2233,7 +2233,7 @@
 	<item>
 		<!-- Dynasty Knife - Great Gale - Focus -->
 		<ingredient count="1" id="11248" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2243,7 +2243,7 @@
 	<item>
 		<!-- Dynasty Knife - Great Gale - Evasion -->
 		<ingredient count="1" id="11249" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2253,7 +2253,7 @@
 	<item>
 		<!-- Dynasty Knife - Great Gale - Critical Damage -->
 		<ingredient count="1" id="11250" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2263,7 +2263,7 @@
 	<item>
 		<!-- Dynasty Halberd - Earth - Anger -->
 		<ingredient count="1" id="11297" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2273,7 +2273,7 @@
 	<item>
 		<!-- Dynasty Halberd - Earth - Critical Stun -->
 		<ingredient count="1" id="11298" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2283,7 +2283,7 @@
 	<item>
 		<!-- Dynasty Halberd - Earth - Light -->
 		<ingredient count="1" id="11299" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2293,7 +2293,7 @@
 	<item>
 		<!-- Dynasty Bagh-Nakh - Great Gale - Rsk. Evasion -->
 		<ingredient count="1" id="11261" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2303,7 +2303,7 @@
 	<item>
 		<!-- Dynasty Bagh-Nakh - Great Gale - Focus -->
 		<ingredient count="1" id="11262" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2313,7 +2313,7 @@
 	<item>
 		<!-- Dynasty Bagh-Nakh - Great Gale - Haste -->
 		<ingredient count="1" id="11263" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2323,7 +2323,7 @@
 	<item>
 		<!-- Dynasty Phantom - Nature - Acumen -->
 		<ingredient count="1" id="11293" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2333,7 +2333,7 @@
 	<item>
 		<!-- Dynasty Phantom - Nature - Mana Up -->
 		<ingredient count="1" id="11294" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2343,7 +2343,7 @@
 	<item>
 		<!-- Dynasty Phantom - Nature - Conversion -->
 		<ingredient count="1" id="11295" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2353,7 +2353,7 @@
 	<item>
 		<!-- Dynasty Mace - Earth - Mana Up -->
 		<ingredient count="1" id="11257" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2363,7 +2363,7 @@
 	<item>
 		<!-- Dynasty Mace - Earth - Conversion -->
 		<ingredient count="1" id="11258" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2373,7 +2373,7 @@
 	<item>
 		<!-- Dynasty Mace - Earth - Acumen -->
 		<ingredient count="1" id="11259" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2383,7 +2383,7 @@
 	<item>
 		<!-- Dynasty Staff - Holy Spirit - Mana Up -->
 		<ingredient count="1" id="11277" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2393,7 +2393,7 @@
 	<item>
 		<!-- Dynasty Staff - Holy Spirit - Conversion -->
 		<ingredient count="1" id="11278" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2403,7 +2403,7 @@
 	<item>
 		<!-- Dynasty Staff - Holy Spirit - Acumen -->
 		<ingredient count="1" id="11279" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2413,7 +2413,7 @@
 	<item>
 		<!-- Dynasty Bow - Great Gale - Cheap Shot -->
 		<ingredient count="1" id="11265" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2423,7 +2423,7 @@
 	<item>
 		<!-- Dynasty Bow - Great Gale - Guidance -->
 		<ingredient count="1" id="11266" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2433,7 +2433,7 @@
 	<item>
 		<!-- Dynasty Bow - Great Gale - Focus -->
 		<ingredient count="1" id="11267" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2443,7 +2443,7 @@
 	<item>
 		<!-- Dynasty Rapier - Earth - Focus -->
 		<ingredient count="1" id="11253" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2453,7 +2453,7 @@
 	<item>
 		<!-- Dynasty Rapier - Earth - Health -->
 		<ingredient count="1" id="11254" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2463,7 +2463,7 @@
 	<item>
 		<!-- Dynasty Rapier - Earth - Light -->
 		<ingredient count="1" id="11255" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2473,7 +2473,7 @@
 	<item>
 		<!-- Dynasty Ancient Sword - Great Gale - Focus -->
 		<ingredient count="1" id="11244" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2483,7 +2483,7 @@
 	<item>
 		<!-- Dynasty Ancient Sword - Great Gale - Health -->
 		<ingredient count="1" id="11245" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2493,7 +2493,7 @@
 	<item>
 		<!-- Dynasty Ancient Sword - Great Gale - Light -->
 		<ingredient count="1" id="11246" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2503,7 +2503,7 @@
 	<item>
 		<!-- Dynasty Crossbow - Great Gale - Cheap Shot -->
 		<ingredient count="1" id="11289" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2513,7 +2513,7 @@
 	<item>
 		<!-- Dynasty Crossbow - Great Gale - Guidance -->
 		<ingredient count="1" id="11290" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2523,7 +2523,7 @@
 	<item>
 		<!-- Dynasty Crossbow - Great Gale - Focus -->
 		<ingredient count="1" id="11291" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2533,7 +2533,7 @@
 	<item>
 		<!-- Dynasty Dual Sword - Earth -->
 		<ingredient count="1" id="11251" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="18700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3747300" id="57" />
@@ -2543,7 +2543,7 @@
 	<item>
 		<!-- Icarus Dual Sword -->
 		<ingredient count="1" id="10415" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2553,7 +2553,7 @@
 	<item>
 		<!-- Icarus Sawsword - Focus -->
 		<ingredient count="1" id="10434" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2563,7 +2563,7 @@
 	<item>
 		<!-- Icarus Sawsword - Health -->
 		<ingredient count="1" id="10435" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2573,7 +2573,7 @@
 	<item>
 		<!-- Icarus Sawsword - Light -->
 		<ingredient count="1" id="10436" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2583,7 +2583,7 @@
 	<item>
 		<!-- Icarus Heavy Arms - Focus -->
 		<ingredient count="1" id="10437" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2593,7 +2593,7 @@
 	<item>
 		<!-- Icarus Heavy Arms - Health -->
 		<ingredient count="1" id="10438" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2603,7 +2603,7 @@
 	<item>
 		<!-- Icarus Heavy Arms - Light -->
 		<ingredient count="1" id="10439" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2613,7 +2613,7 @@
 	<item>
 		<!-- Icarus Spirit - Acumen -->
 		<ingredient count="1" id="10440" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2623,7 +2623,7 @@
 	<item>
 		<!-- Icarus Spirit - Mana Up -->
 		<ingredient count="1" id="10441" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2633,7 +2633,7 @@
 	<item>
 		<!-- Icarus Spirit - Conversion -->
 		<ingredient count="1" id="10442" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2643,7 +2643,7 @@
 	<item>
 		<!-- Icarus Spitter - Cheap Shot -->
 		<ingredient count="1" id="10443" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2653,7 +2653,7 @@
 	<item>
 		<!-- Icarus Spitter - Guidance -->
 		<ingredient count="1" id="10444" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2663,7 +2663,7 @@
 	<item>
 		<!-- Icarus Spitter - Focus -->
 		<ingredient count="1" id="10445" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2673,7 +2673,7 @@
 	<item>
 		<!-- Icarus Disperser - Focus -->
 		<ingredient count="1" id="10446" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2683,7 +2683,7 @@
 	<item>
 		<!-- Icarus Disperser - Evasion -->
 		<ingredient count="1" id="10447" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2693,7 +2693,7 @@
 	<item>
 		<!-- Icarus Disperser - Critical Damage -->
 		<ingredient count="1" id="10448" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2703,7 +2703,7 @@
 	<item>
 		<!-- Icarus Trident - Anger -->
 		<ingredient count="1" id="10449" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2713,7 +2713,7 @@
 	<item>
 		<!-- Icarus Trident - Critical Stun -->
 		<ingredient count="1" id="10450" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2723,7 +2723,7 @@
 	<item>
 		<!-- Icarus Trident - Light -->
 		<ingredient count="1" id="10451" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2733,7 +2733,7 @@
 	<item>
 		<!-- Icarus Hammer - Anger -->
 		<ingredient count="1" id="10452" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2743,7 +2743,7 @@
 	<item>
 		<!-- Icarus Hammer - Health -->
 		<ingredient count="1" id="10453" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2753,7 +2753,7 @@
 	<item>
 		<!-- Icarus Hammer - Rsk. Focus -->
 		<ingredient count="1" id="10454" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2763,7 +2763,7 @@
 	<item>
 		<!-- Icarus Hall - Mana Up -->
 		<ingredient count="1" id="10455" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2773,7 +2773,7 @@
 	<item>
 		<!-- Icarus Hall - Conversion -->
 		<ingredient count="1" id="10456" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2783,7 +2783,7 @@
 	<item>
 		<!-- Icarus Hall - Acumen -->
 		<ingredient count="1" id="10457" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2793,7 +2793,7 @@
 	<item>
 		<!-- Icarus Hand - Rsk. Evasion -->
 		<ingredient count="1" id="10458" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2803,7 +2803,7 @@
 	<item>
 		<!-- Icarus Hand - Focus -->
 		<ingredient count="1" id="10459" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2813,7 +2813,7 @@
 	<item>
 		<!-- Icarus Hand - Haste -->
 		<ingredient count="1" id="10460" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2823,7 +2823,7 @@
 	<item>
 		<!-- Icarus Stinger - Focus -->
 		<ingredient count="1" id="10461" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2833,7 +2833,7 @@
 	<item>
 		<!-- Icarus Stinger - Health -->
 		<ingredient count="1" id="10462" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2843,7 +2843,7 @@
 	<item>
 		<!-- Icarus Stinger - Light -->
 		<ingredient count="1" id="10463" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2853,7 +2853,7 @@
 	<item>
 		<!-- Icarus Wingblade - Focus -->
 		<ingredient count="1" id="10464" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2863,7 +2863,7 @@
 	<item>
 		<!-- Icarus Wingblade - Health -->
 		<ingredient count="1" id="10465" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2873,7 +2873,7 @@
 	<item>
 		<!-- Icarus Wingblade - Light -->
 		<ingredient count="1" id="10466" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2883,7 +2883,7 @@
 	<item>
 		<!-- Icarus Shooter - Cheap Shot -->
 		<ingredient count="1" id="10467" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2893,7 +2893,7 @@
 	<item>
 		<!-- Icarus Shooter - Guidance -->
 		<ingredient count="1" id="10468" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2903,7 +2903,7 @@
 	<item>
 		<!-- Icarus Shooter - Focus -->
 		<ingredient count="1" id="10469" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2913,7 +2913,7 @@
 	<item>
 		<!-- Icarus Dual Sword - Destruction -->
 		<ingredient count="1" id="11300" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2923,7 +2923,7 @@
 	<item>
 		<!-- Icarus Disperser - Confusion - Focus -->
 		<ingredient count="1" id="11302" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2933,7 +2933,7 @@
 	<item>
 		<!-- Icarus Disperser - Confusion - Evasion -->
 		<ingredient count="1" id="11303" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2943,7 +2943,7 @@
 	<item>
 		<!-- Icarus Disperser - Confusion - Critical Damage -->
 		<ingredient count="1" id="11304" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2953,7 +2953,7 @@
 	<item>
 		<!-- Icarus Sawsword - Destruction - Focus -->
 		<ingredient count="1" id="11306" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2963,7 +2963,7 @@
 	<item>
 		<!-- Icarus Sawsword - Destruction - Health -->
 		<ingredient count="1" id="11307" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2973,7 +2973,7 @@
 	<item>
 		<!-- Icarus Sawsword - Destruction - Light -->
 		<ingredient count="1" id="11308" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2983,7 +2983,7 @@
 	<item>
 		<!-- Icarus Shooter - Concentration - Cheap Shot -->
 		<ingredient count="1" id="11310" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -2993,7 +2993,7 @@
 	<item>
 		<!-- Icarus Shooter - Concentration - Guidance -->
 		<ingredient count="1" id="11311" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -3003,7 +3003,7 @@
 	<item>
 		<!-- Icarus Shooter - Concentration - Focus -->
 		<ingredient count="1" id="11312" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -3013,7 +3013,7 @@
 	<item>
 		<!-- Icarus Stinger - Destruction - Focus -->
 		<ingredient count="1" id="11314" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -3023,7 +3023,7 @@
 	<item>
 		<!-- Icarus Stinger - Destruction - Health -->
 		<ingredient count="1" id="11315" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -3033,7 +3033,7 @@
 	<item>
 		<!-- Icarus Stinger - Destruction - Light -->
 		<ingredient count="1" id="11316" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -3043,7 +3043,7 @@
 	<item>
 		<!-- Icarus Spirit - Nature - Acumen -->
 		<ingredient count="1" id="11318" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -3053,7 +3053,7 @@
 	<item>
 		<!-- Icarus Spirit - Nature - Mana Up -->
 		<ingredient count="1" id="11319" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -3063,7 +3063,7 @@
 	<item>
 		<!-- Icarus Spirit - Nature - Conversion -->
 		<ingredient count="1" id="11320" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -3073,7 +3073,7 @@
 	<item>
 		<!-- Icarus Spitter - Concentration - Cheap Shot -->
 		<ingredient count="1" id="11322" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -3083,7 +3083,7 @@
 	<item>
 		<!-- Icarus Spitter - Concentration - Guidance -->
 		<ingredient count="1" id="11323" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -3093,7 +3093,7 @@
 	<item>
 		<!-- Icarus Spitter - Concentration - Focus -->
 		<ingredient count="1" id="11324" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -3103,7 +3103,7 @@
 	<item>
 		<!-- Icarus Wingblade - Lightning - Focus -->
 		<ingredient count="1" id="11326" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -3113,7 +3113,7 @@
 	<item>
 		<!-- Icarus Wingblade - Lightning - Health -->
 		<ingredient count="1" id="11327" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -3123,7 +3123,7 @@
 	<item>
 		<!-- Icarus Wingblade - Lightning - Light -->
 		<ingredient count="1" id="11328" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -3133,7 +3133,7 @@
 	<item>
 		<!-- Icarus Trident - Thunder - Anger -->
 		<ingredient count="1" id="11330" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -3143,7 +3143,7 @@
 	<item>
 		<!-- Icarus Trident - Thunder - Critical Stun -->
 		<ingredient count="1" id="11331" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -3153,7 +3153,7 @@
 	<item>
 		<!-- Icarus Trident - Thunder - Light -->
 		<ingredient count="1" id="11332" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -3163,7 +3163,7 @@
 	<item>
 		<!-- Icarus Hammer - Earth - Anger -->
 		<ingredient count="1" id="11334" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -3173,7 +3173,7 @@
 	<item>
 		<!-- Icarus Hammer - Earth - Health -->
 		<ingredient count="1" id="11335" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -3183,7 +3183,7 @@
 	<item>
 		<!-- Icarus Hammer - Earth - Rsk. Focus -->
 		<ingredient count="1" id="11336" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -3193,7 +3193,7 @@
 	<item>
 		<!-- Icarus Hand - Destruction - Rsk. Evasion -->
 		<ingredient count="1" id="11338" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -3203,7 +3203,7 @@
 	<item>
 		<!-- Icarus Hand - Destruction - Focus -->
 		<ingredient count="1" id="11339" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -3213,7 +3213,7 @@
 	<item>
 		<!-- Icarus Hand - Destruction - Haste -->
 		<ingredient count="1" id="11340" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -3223,7 +3223,7 @@
 	<item>
 		<!-- Icarus Heavy Arms - Lightning - Focus -->
 		<ingredient count="1" id="11342" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -3233,7 +3233,7 @@
 	<item>
 		<!-- Icarus Heavy Arms - Lightning - Health -->
 		<ingredient count="1" id="11343" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -3243,7 +3243,7 @@
 	<item>
 		<!-- Icarus Heavy Arms - Lightning - Light -->
 		<ingredient count="1" id="11344" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -3253,7 +3253,7 @@
 	<item>
 		<!-- Icarus Hall - Hail - Mana Up -->
 		<ingredient count="1" id="11346" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -3263,7 +3263,7 @@
 	<item>
 		<!-- Icarus Hall - Hail - Conversion -->
 		<ingredient count="1" id="11347" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -3273,7 +3273,7 @@
 	<item>
 		<!-- Icarus Hall - Hail - Acumen -->
 		<ingredient count="1" id="11348" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="25900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="5171950" id="57" />
@@ -3283,7 +3283,7 @@
 	<item>
 		<!-- Icarus Dual Daggers -->
 		<ingredient count="1" id="13883" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="30400" id="-300" />
 		<!-- Adena -->
 		<ingredient count="6089000" id="57" />
@@ -3293,7 +3293,7 @@
 	<item>
 		<!-- Icarus Dual Daggers - Confusion -->
 		<ingredient count="1" id="14527" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="30400" id="-300" />
 		<!-- Adena -->
 		<ingredient count="6089000" id="57" />
@@ -3303,7 +3303,7 @@
 	<item>
 		<!-- Vesper Dual Sword -->
 		<ingredient count="1" id="52" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
@@ -3313,7 +3313,7 @@
 	<item>
 		<!-- Vesper Dual Daggers -->
 		<ingredient count="1" id="13884" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -3323,7 +3323,7 @@
 	<item>
 		<!-- Vesper Dual Sword - Destruction -->
 		<ingredient count="1" id="16150" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
@@ -3333,7 +3333,7 @@
 	<item>
 		<!-- Vesper Dual Daggers - Gale -->
 		<ingredient count="1" id="16148" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -3343,7 +3343,7 @@
 	<item>
 		<!-- Vesper Cutter - Haste -->
 		<ingredient count="1" id="14118" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
@@ -3353,7 +3353,7 @@
 	<item>
 		<!-- Vesper Cutter - Health -->
 		<ingredient count="1" id="14119" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
@@ -3363,7 +3363,7 @@
 	<item>
 		<!-- Vesper Cutter - Focus -->
 		<ingredient count="1" id="14120" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
@@ -3373,7 +3373,7 @@
 	<item>
 		<!-- Vesper Slasher - Haste -->
 		<ingredient count="1" id="14121" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
@@ -3383,7 +3383,7 @@
 	<item>
 		<!-- Vesper Slasher - Health -->
 		<ingredient count="1" id="14122" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
@@ -3393,7 +3393,7 @@
 	<item>
 		<!-- Vesper Slasher - Focus -->
 		<ingredient count="1" id="14123" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
@@ -3403,7 +3403,7 @@
 	<item>
 		<!-- Vesper Buster - Mana Up -->
 		<ingredient count="1" id="14124" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
@@ -3413,7 +3413,7 @@
 	<item>
 		<!-- Vesper Buster - Acumen -->
 		<ingredient count="1" id="14125" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
@@ -3423,7 +3423,7 @@
 	<item>
 		<!-- Vesper Buster - Magic Hold -->
 		<ingredient count="1" id="14126" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
@@ -3433,17 +3433,17 @@
 	<item>
 		<!-- Vesper Shaper - Critical Damage -->
 		<ingredient count="1" id="14127" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Shaper {PvP} - Crt. Damage -->
+		<!-- Vesper Shaper {PvP} - Critical Damage -->
 		<production count="1" id="14487" />
 	</item>
 	<item>
 		<!-- Vesper Shaper - HP Drain -->
 		<ingredient count="1" id="14128" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
@@ -3453,7 +3453,7 @@
 	<item>
 		<!-- Vesper Shaper - Haste -->
 		<ingredient count="1" id="14129" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
@@ -3463,7 +3463,7 @@
 	<item>
 		<!-- Vesper Fighter - Focus -->
 		<ingredient count="1" id="14130" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
@@ -3473,7 +3473,7 @@
 	<item>
 		<!-- Vesper Fighter - Health -->
 		<ingredient count="1" id="14131" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
@@ -3483,17 +3483,17 @@
 	<item>
 		<!-- Vesper Fighter - Critical Stun -->
 		<ingredient count="1" id="14132" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Fighter {PvP} - Crt. Stun -->
+		<!-- Vesper Fighter {PvP} - Critical Stun -->
 		<production count="1" id="14492" />
 	</item>
 	<item>
 		<!-- Vesper Stormer - Health -->
 		<ingredient count="1" id="14133" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
@@ -3503,7 +3503,7 @@
 	<item>
 		<!-- Vesper Stormer - Guidance -->
 		<ingredient count="1" id="14134" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
@@ -3513,7 +3513,7 @@
 	<item>
 		<!-- Vesper Stormer - Haste -->
 		<ingredient count="1" id="14135" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
@@ -3523,7 +3523,7 @@
 	<item>
 		<!-- Vesper Avenger - HP Drain -->
 		<ingredient count="1" id="14136" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
@@ -3533,7 +3533,7 @@
 	<item>
 		<!-- Vesper Avenger - Health -->
 		<ingredient count="1" id="14137" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
@@ -3543,7 +3543,7 @@
 	<item>
 		<!-- Vesper Avenger - HP Regeneration -->
 		<ingredient count="1" id="14138" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
@@ -3553,7 +3553,7 @@
 	<item>
 		<!-- Vesper Retributer - HP Regeneration -->
 		<ingredient count="1" id="14139" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
@@ -3563,7 +3563,7 @@
 	<item>
 		<!-- Vesper Retributer - Health -->
 		<ingredient count="1" id="14140" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
@@ -3573,7 +3573,7 @@
 	<item>
 		<!-- Vesper Retributer - HP Drain -->
 		<ingredient count="1" id="14141" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
@@ -3583,7 +3583,7 @@
 	<item>
 		<!-- Vesper Caster - Acumen -->
 		<ingredient count="1" id="14142" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
@@ -3593,7 +3593,7 @@
 	<item>
 		<!-- Vesper Caster - MP Regeneration -->
 		<ingredient count="1" id="14143" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
@@ -3603,7 +3603,7 @@
 	<item>
 		<!-- Vesper Caster - Mana Up -->
 		<ingredient count="1" id="14144" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
@@ -3613,7 +3613,7 @@
 	<item>
 		<!-- Vesper Singer - Empower -->
 		<ingredient count="1" id="14145" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
@@ -3623,7 +3623,7 @@
 	<item>
 		<!-- Vesper Singer - MP Regeneration -->
 		<ingredient count="1" id="14146" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
@@ -3633,7 +3633,7 @@
 	<item>
 		<!-- Vesper Singer - Magic Hold -->
 		<ingredient count="1" id="14147" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
@@ -3643,7 +3643,7 @@
 	<item>
 		<!-- Vesper Thrower - Cheap Shot -->
 		<ingredient count="1" id="14148" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
@@ -3653,7 +3653,7 @@
 	<item>
 		<!-- Vesper Thrower - Focus -->
 		<ingredient count="1" id="14149" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
@@ -3663,17 +3663,17 @@
 	<item>
 		<!-- Vesper Thrower - Critical Slow -->
 		<ingredient count="1" id="14150" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Thrower {PvP} - Crt. Slow -->
+		<!-- Vesper Thrower {PvP} - Critical Slow -->
 		<production count="1" id="14510" />
 	</item>
 	<item>
 		<!-- Vesper Pincer - Haste -->
 		<ingredient count="1" id="14151" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
@@ -3683,7 +3683,7 @@
 	<item>
 		<!-- Vesper Pincer - Health -->
 		<ingredient count="1" id="14152" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
@@ -3693,7 +3693,7 @@
 	<item>
 		<!-- Vesper Pincer - Focus -->
 		<ingredient count="1" id="14153" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
@@ -3701,39 +3701,39 @@
 		<production count="1" id="14513" />
 	</item>
 	<item>
-		<!-- Vesper Sheutjeh - Cheap Shot -->
+		<!-- Vesper Shooter - Cheap Shot -->
 		<ingredient count="1" id="14154" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Sheutjeh {PvP} - Cheap Shot -->
+		<!-- Vesper Shooter {PvP} - Cheap Shot -->
 		<production count="1" id="14514" />
 	</item>
 	<item>
-		<!-- Vesper Sheutjeh - Focus -->
+		<!-- Vesper Shooter - Focus -->
 		<ingredient count="1" id="14155" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Sheutjeh {PvP} - Focus -->
+		<!-- Vesper Shooter {PvP} - Focus -->
 		<production count="1" id="14515" />
 	</item>
 	<item>
-		<!-- Vesper Sheutjeh - Critical Slow -->
+		<!-- Vesper Shooter - Critical Slow -->
 		<ingredient count="1" id="14156" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Sheutjeh {PvP} - Crt. Slow -->
+		<!-- Vesper Shooter {PvP} - Critical Slow -->
 		<production count="1" id="14516" />
 	</item>
 	<item>
 		<!-- Vesper Nagan - Haste -->
 		<ingredient count="1" id="14157" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
@@ -3743,7 +3743,7 @@
 	<item>
 		<!-- Vesper Nagan - Health -->
 		<ingredient count="1" id="14158" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
@@ -3753,7 +3753,7 @@
 	<item>
 		<!-- Vesper Nagan - Focus -->
 		<ingredient count="1" id="14159" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
@@ -3763,427 +3763,427 @@
 	<item>
 		<!-- Vesper Cutter - Thunder - Haste -->
 		<ingredient count="1" id="16056" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Cutter- Thunder {PvP} -->
+		<!-- Vesper Cutter- Thunder {PvP} - Haste -->
 		<production count="1" id="16179" />
 	</item>
 	<item>
 		<!-- Vesper Cutter - Thunder - Health -->
 		<ingredient count="1" id="16057" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Cutter- Thunder {PvP} -->
+		<!-- Vesper Cutter- Thunder {PvP} - Health -->
 		<production count="1" id="16180" />
 	</item>
 	<item>
 		<!-- Vesper Cutter - Thunder - Focus -->
 		<ingredient count="1" id="16058" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Cutter- Thunder {PvP} -->
+		<!-- Vesper Cutter- Thunder {PvP} - Focus -->
 		<production count="1" id="16181" />
 	</item>
 	<item>
 		<!-- Vesper Slasher - Gale - Haste -->
 		<ingredient count="1" id="16059" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Slasher- Gail {PvP} -->
+		<!-- Vesper Slasher- Gale {PvP} - Haste -->
 		<production count="1" id="16182" />
 	</item>
 	<item>
 		<!-- Vesper Slasher - Gale - Health -->
 		<ingredient count="1" id="16060" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Slasher- Gail {PvP} -->
+		<!-- Vesper Slasher- Gale {PvP} - Health -->
 		<production count="1" id="16183" />
 	</item>
 	<item>
 		<!-- Vesper Slasher - Gale - Focus -->
 		<ingredient count="1" id="16061" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Slasher- Gail {PvP} -->
+		<!-- Vesper Slasher- Gale {PvP} - Focus -->
 		<production count="1" id="16184" />
 	</item>
 	<item>
 		<!-- Vesper Buster - Cleverness - Mana Up -->
 		<ingredient count="1" id="16062" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Buster - Cleverness {PvP} -->
+		<!-- Vesper Buster - Cleverness {PvP} - Mana Up -->
 		<production count="1" id="16185" />
 	</item>
 	<item>
 		<!-- Vesper Buster - Cleverness - Acumen -->
 		<ingredient count="1" id="16063" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Buster - Cleverness {PvP} -->
+		<!-- Vesper Buster - Cleverness {PvP} - Acumen -->
 		<production count="1" id="16186" />
 	</item>
 	<item>
 		<!-- Vesper Buster - Cleverness - Magic Hold -->
 		<ingredient count="1" id="16064" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Buster - Cleverness {PvP} -->
+		<!-- Vesper Buster - Cleverness {PvP} - Magic Hold -->
 		<production count="1" id="16187" />
 	</item>
 	<item>
-		<!-- Vesper Shaper - Gale - Crt. Damage -->
+		<!-- Vesper Shaper - Gale - Critical Damage -->
 		<ingredient count="1" id="16065" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Shaper - Gail {PvP} -->
+		<!-- Vesper Shaper - Gale {PvP} - Critical Damage -->
 		<production count="1" id="16188" />
 	</item>
 	<item>
 		<!-- Vesper Shaper - Gale - HP Drain -->
 		<ingredient count="1" id="16066" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Shaper - Gail {PvP} -->
+		<!-- Vesper Shaper - Gale {PvP} - HP Drain -->
 		<production count="1" id="16189" />
 	</item>
 	<item>
 		<!-- Vesper Shaper - Gale - Haste -->
 		<ingredient count="1" id="16067" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Shaper - Gail {PvP} -->
+		<!-- Vesper Shaper - Gale {PvP} - Haste -->
 		<production count="1" id="16190" />
 	</item>
 	<item>
 		<!-- Vesper Fighter - Gale - Focus -->
 		<ingredient count="1" id="16068" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Fighter - Gail {PvP} -->
+		<!-- Vesper Fighter - Gale {PvP} - Focus -->
 		<production count="1" id="16191" />
 	</item>
 	<item>
 		<!-- Vesper Fighter - Gale - Health -->
 		<ingredient count="1" id="16069" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Fighter - Gail {PvP} -->
+		<!-- Vesper Fighter - Gale {PvP} - Health -->
 		<production count="1" id="16192" />
 	</item>
 	<item>
-		<!-- Vesper Fighter - Gale - Crt. Stun -->
+		<!-- Vesper Fighter - Gale - Critical Stun -->
 		<ingredient count="1" id="16070" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Fighter - Gail {PvP} -->
+		<!-- Vesper Fighter - Gale {PvP} - Critical Stun -->
 		<production count="1" id="16193" />
 	</item>
 	<item>
 		<!-- Vesper Stormer - Thunder - Health -->
 		<ingredient count="1" id="16071" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Stormer - Thunder {PvP} -->
+		<!-- Vesper Stormer - Thunder {PvP} - Health -->
 		<production count="1" id="16194" />
 	</item>
 	<item>
 		<!-- Vesper Stormer - Thunder - Guidance -->
 		<ingredient count="1" id="16072" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Stormer - Thunder {PvP} -->
+		<!-- Vesper Stormer - Thunder {PvP} - Guidance -->
 		<production count="1" id="16195" />
 	</item>
 	<item>
 		<!-- Vesper Stormer - Thunder - Haste -->
 		<ingredient count="1" id="16073" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Stormer - Thunder {PvP} -->
+		<!-- Vesper Stormer - Thunder {PvP} - Haste -->
 		<production count="1" id="16196" />
 	</item>
 	<item>
 		<!-- Vesper Avenger - Landslide - HP Drain -->
 		<ingredient count="1" id="16074" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Avenger - Landslide {PvP} -->
+		<!-- Vesper Avenger - Landslide {PvP} - HP Drain -->
 		<production count="1" id="16197" />
 	</item>
 	<item>
 		<!-- Vesper Avenger - Landslide - Health -->
 		<ingredient count="1" id="16075" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Avenger - Landslide {PvP} -->
+		<!-- Vesper Avenger - Landslide {PvP} - Health -->
 		<production count="1" id="16198" />
 	</item>
 	<item>
 		<!-- Vesper Avenger - Landslide - HP Regeneration -->
 		<ingredient count="1" id="16076" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Avenger - Landslide {PvP} -->
+		<!-- Vesper Avenger - Landslide {PvP} - HP Regeneration -->
 		<production count="1" id="16199" />
 	</item>
 	<item>
 		<!-- Vesper Retributer - Gale - HP Regeneration -->
 		<ingredient count="1" id="16077" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Retributer - Gail {PvP} -->
+		<!-- Vesper Retributer - Gale {PvP} - HP Regeneration -->
 		<production count="1" id="16200" />
 	</item>
 	<item>
 		<!-- Vesper Retributer - Gale - Health -->
 		<ingredient count="1" id="16078" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Retributer - Gail {PvP} -->
+		<!-- Vesper Retributer - Gale {PvP} - Health -->
 		<production count="1" id="16201" />
 	</item>
 	<item>
 		<!-- Vesper Retributer - Gale - HP Drain -->
 		<ingredient count="1" id="16079" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Retributer - Gail {PvP} -->
+		<!-- Vesper Retributer - Gale {PvP} - HP Drain -->
 		<production count="1" id="16202" />
 	</item>
 	<item>
 		<!-- Vesper Caster - Cleverness - Acumen -->
 		<ingredient count="1" id="16080" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Caster - Cleverness {PvP} -->
+		<!-- Vesper Caster - Cleverness {PvP} - Acumen -->
 		<production count="1" id="16203" />
 	</item>
 	<item>
 		<!-- Vesper Caster - Cleverness - MP Regeneration -->
 		<ingredient count="1" id="16081" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Caster - Cleverness {PvP} -->
+		<!-- Vesper Caster - Cleverness {PvP} - MP Regeneration -->
 		<production count="1" id="16204" />
 	</item>
 	<item>
 		<!-- Vesper Caster - Cleverness - Mana Up -->
 		<ingredient count="1" id="16082" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Caster - Cleverness {PvP} -->
+		<!-- Vesper Caster - Cleverness {PvP} - Mana Up -->
 		<production count="1" id="16205" />
 	</item>
 	<item>
-		<!-- Vesper Singer - Tidal Wave - Empower -->
+		<!-- Vesper Singer - Hail - Empower -->
 		<ingredient count="1" id="16083" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Singer - Tidal Wave {PvP} -->
+		<!-- Vesper Singer - Hail {PvP} - Empower -->
 		<production count="1" id="16206" />
 	</item>
 	<item>
-		<!-- Vesper Singer - Tidal Wave - MP Regeneration -->
+		<!-- Vesper Singer - Hail - MP Regeneration -->
 		<ingredient count="1" id="16084" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Singer - Tidal Wave {PvP} -->
+		<!-- Vesper Singer - Hail {PvP} - MP Regeneration -->
 		<production count="1" id="16207" />
 	</item>
 	<item>
-		<!-- Vesper Singer - Tidal Wave - Magic Hold -->
+		<!-- Vesper Singer - Hail - Magic Hold -->
 		<ingredient count="1" id="16085" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Singer - Tidal Wave {PvP} -->
+		<!-- Vesper Singer - Hail {PvP} - Magic Hold -->
 		<production count="1" id="16208" />
 	</item>
 	<item>
 		<!-- Vesper Thrower - Clairvoyance - Cheap Shot -->
 		<ingredient count="1" id="16086" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Thrower - Clairvoyance {PvP} -->
+		<!-- Vesper Thrower - Clairvoyance {PvP} - Cheap Shot -->
 		<production count="1" id="16209" />
 	</item>
 	<item>
 		<!-- Vesper Thrower - Clairvoyance - Focus -->
 		<ingredient count="1" id="16087" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Thrower - Clairvoyance {PvP} -->
+		<!-- Vesper Thrower - Clairvoyance {PvP} - Focus -->
 		<production count="1" id="16210" />
 	</item>
 	<item>
-		<!-- Vesper Thrower - Clairvoyance - Crt. Slow -->
+		<!-- Vesper Thrower - Clairvoyance - Critical Slow -->
 		<ingredient count="1" id="16088" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Thrower - Clairvoyance {PvP} -->
+		<!-- Vesper Thrower - Clairvoyance {PvP} - Critical Slow -->
 		<production count="1" id="16211" />
 	</item>
 	<item>
 		<!-- Vesper Pincer - Thunder - Haste -->
 		<ingredient count="1" id="16089" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Pincer- Thunder {PvP} -->
+		<!-- Vesper Pincer- Thunder {PvP} - Haste -->
 		<production count="1" id="16212" />
 	</item>
 	<item>
 		<!-- Vesper Pincer - Thunder - Health -->
 		<ingredient count="1" id="16090" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Pincer- Thunder {PvP} -->
+		<!-- Vesper Pincer- Thunder {PvP} - Health -->
 		<production count="1" id="16213" />
 	</item>
 	<item>
 		<!-- Vesper Pincer - Thunder - Focus -->
 		<ingredient count="1" id="16091" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Pincer- Thunder {PvP} -->
+		<!-- Vesper Pincer- Thunder {PvP} - Focus -->
 		<production count="1" id="16214" />
 	</item>
 	<item>
-		<!-- Vesper Schutze - Clairvoyance - Cheap Shot -->
+		<!-- Vesper Shooter - Clairvoyance - Cheap Shot -->
 		<ingredient count="1" id="16092" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Schutze - Clairvoyance {PvP} -->
+		<!-- Vesper Shooter - Clairvoyance {PvP} - Cheap Shot -->
 		<production count="1" id="16215" />
 	</item>
 	<item>
-		<!-- Vesper Schutze - Clairvoyance - Focus -->
+		<!-- Vesper Shooter - Clairvoyance - Focus -->
 		<ingredient count="1" id="16093" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Schutze - Clairvoyance {PvP} -->
+		<!-- Vesper Shooter - Clairvoyance {PvP} - Focus -->
 		<production count="1" id="16216" />
 	</item>
 	<item>
-		<!-- Vesper Schutze - Clairvoyance - Crt. Slow -->
+		<!-- Vesper Shooter - Clairvoyance - Critical Slow -->
 		<ingredient count="1" id="16094" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Schutze - Clairvoyance {PvP} -->
+		<!-- Vesper Shooter - Clairvoyance {PvP} - Critical Slow -->
 		<production count="1" id="16217" />
 	</item>
 	<item>
 		<!-- Vesper Nagan - Gale - Haste -->
 		<ingredient count="1" id="16095" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Nagan - Gail {PvP} -->
+		<!-- Vesper Nagan - Gale {PvP} - Haste -->
 		<production count="1" id="16218" />
 	</item>
 	<item>
 		<!-- Vesper Nagan - Gale - Health -->
 		<ingredient count="1" id="16096" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Nagan - Gail {PvP} -->
+		<!-- Vesper Nagan - Gale {PvP} - Health -->
 		<production count="1" id="16219" />
 	</item>
 	<item>
 		<!-- Vesper Nagan - Gale - Focus -->
 		<ingredient count="1" id="16097" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="36700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="7343650" id="57" />
-		<!-- Vesper Nagan - Gail {PvP} -->
+		<!-- Vesper Nagan - Gale {PvP} - Focus -->
 		<production count="1" id="16220" />
 	</item>
 	<item>
 		<!-- Periel Sword - Focus -->
 		<ingredient count="1" id="15830" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -4193,7 +4193,7 @@
 	<item>
 		<!-- Periel Sword - Haste -->
 		<ingredient count="1" id="15831" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -4203,7 +4203,7 @@
 	<item>
 		<!-- Periel Sword - Health -->
 		<ingredient count="1" id="15829" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -4213,7 +4213,7 @@
 	<item>
 		<!-- Skull Edge - Haste -->
 		<ingredient count="1" id="15833" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -4221,19 +4221,19 @@
 		<production count="1" id="15945" />
 	</item>
 	<item>
-		<!-- Skull Edge - Crt. Damage -->
+		<!-- Skull Edge - Critical Damage -->
 		<ingredient count="1" id="15834" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
-		<!-- Skull Edge {PvP} - Crt. Damage -->
+		<!-- Skull Edge {PvP} - Critical Damage -->
 		<production count="1" id="15946" />
 	</item>
 	<item>
 		<!-- Skull Edge - HP Drain -->
 		<ingredient count="1" id="15832" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -4243,7 +4243,7 @@
 	<item>
 		<!-- Vigwik Axe - HP Regeneration -->
 		<ingredient count="1" id="15836" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -4253,7 +4253,7 @@
 	<item>
 		<!-- Vigwik Axe - HP Drain -->
 		<ingredient count="1" id="15837" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -4263,7 +4263,7 @@
 	<item>
 		<!-- Vigwik Axe - Health -->
 		<ingredient count="1" id="15835" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -4273,7 +4273,7 @@
 	<item>
 		<!-- Devilish Maul - HP Drain -->
 		<ingredient count="1" id="15839" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -4283,7 +4283,7 @@
 	<item>
 		<!-- Devilish Maul - HP Regeneration -->
 		<ingredient count="1" id="15840" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -4293,7 +4293,7 @@
 	<item>
 		<!-- Devilish Maul - Health -->
 		<ingredient count="1" id="15838" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -4303,7 +4303,7 @@
 	<item>
 		<!-- Feather Eye Blade - Focus -->
 		<ingredient count="1" id="15842" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -4313,7 +4313,7 @@
 	<item>
 		<!-- Feather Eye Blade - Haste -->
 		<ingredient count="1" id="15843" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -4323,7 +4323,7 @@
 	<item>
 		<!-- Feather Eye Blade - Health -->
 		<ingredient count="1" id="15841" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -4331,19 +4331,19 @@
 		<production count="1" id="15953" />
 	</item>
 	<item>
-		<!-- Octo Claw - Crt. Stun -->
+		<!-- Octo Claw - Critical Stun -->
 		<ingredient count="1" id="15845" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
-		<!-- Octo Claw {PvP} - Crt. Stun -->
+		<!-- Octo Claw {PvP} - Critical Stun -->
 		<production count="1" id="15957" />
 	</item>
 	<item>
 		<!-- Octo Claw - Focus -->
 		<ingredient count="1" id="15846" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -4353,7 +4353,7 @@
 	<item>
 		<!-- Octo Claw - Health -->
 		<ingredient count="1" id="15844" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -4363,7 +4363,7 @@
 	<item>
 		<!-- Doubletop Spear - Haste -->
 		<ingredient count="1" id="15848" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -4373,7 +4373,7 @@
 	<item>
 		<!-- Doubletop Spear - Health -->
 		<ingredient count="1" id="15849" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -4383,7 +4383,7 @@
 	<item>
 		<!-- Doubletop Spear - Guidance -->
 		<ingredient count="1" id="15847" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -4393,7 +4393,7 @@
 	<item>
 		<!-- Rising Star - Mana Up -->
 		<ingredient count="1" id="15851" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -4403,7 +4403,7 @@
 	<item>
 		<!-- Rising Star - Acumen -->
 		<ingredient count="1" id="15852" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -4413,7 +4413,7 @@
 	<item>
 		<!-- Rising Star - MP Regeneration -->
 		<ingredient count="1" id="15850" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -4423,7 +4423,7 @@
 	<item>
 		<!-- Black Visage - Magic Hold -->
 		<ingredient count="1" id="15854" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -4433,7 +4433,7 @@
 	<item>
 		<!-- Black Visage - Empower -->
 		<ingredient count="1" id="15855" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -4443,7 +4443,7 @@
 	<item>
 		<!-- Black Visage - MP Regeneration -->
 		<ingredient count="1" id="15853" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -4453,7 +4453,7 @@
 	<item>
 		<!-- Veniplant Sword - Magic Hold -->
 		<ingredient count="1" id="15857" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -4463,7 +4463,7 @@
 	<item>
 		<!-- Veniplant Sword - Mana Up -->
 		<ingredient count="1" id="15858" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -4473,7 +4473,7 @@
 	<item>
 		<!-- Veniplant Sword - Acumen -->
 		<ingredient count="1" id="15856" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -4481,19 +4481,19 @@
 		<production count="1" id="15968" />
 	</item>
 	<item>
-		<!-- Skull Carnium Bow - Crt. Slow -->
+		<!-- Skull Carnium Bow - Critical Slow -->
 		<ingredient count="1" id="15860" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
-		<!-- Skull Carnium Bow {PvP} - Crt. Slow -->
+		<!-- Skull Carnium Bow {PvP} - Critical Slow -->
 		<production count="1" id="15972" />
 	</item>
 	<item>
 		<!-- Skull Carnium Bow - Cheap Shot -->
 		<ingredient count="1" id="15861" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -4503,7 +4503,7 @@
 	<item>
 		<!-- Skull Carnium Bow - Focus -->
 		<ingredient count="1" id="15859" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -4513,7 +4513,7 @@
 	<item>
 		<!-- Gemtail Rapier - Focus -->
 		<ingredient count="1" id="15863" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -4523,7 +4523,7 @@
 	<item>
 		<!-- Gemtail Rapier - Haste -->
 		<ingredient count="1" id="15864" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -4533,7 +4533,7 @@
 	<item>
 		<!-- Gemtail Rapier - Health -->
 		<ingredient count="1" id="15862" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -4543,7 +4543,7 @@
 	<item>
 		<!-- Finale Blade - Focus -->
 		<ingredient count="1" id="15866" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -4553,7 +4553,7 @@
 	<item>
 		<!-- Finale Blade - Haste -->
 		<ingredient count="1" id="15867" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -4563,7 +4563,7 @@
 	<item>
 		<!-- Finale Blade - Health -->
 		<ingredient count="1" id="15865" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -4571,19 +4571,19 @@
 		<production count="1" id="15977" />
 	</item>
 	<item>
-		<!-- Dominion Crossbow - Crt. Slow -->
+		<!-- Dominion Crossbow - Critical Slow -->
 		<ingredient count="1" id="15869" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
-		<!-- Dominion Crossbow {PvP} - Crt. Slow -->
+		<!-- Dominion Crossbow {PvP} - Critical Slow -->
 		<production count="1" id="15981" />
 	</item>
 	<item>
 		<!-- Dominion Crossbow - Cheap Shot -->
 		<ingredient count="1" id="15870" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -4593,7 +4593,7 @@
 	<item>
 		<!-- Dominion Crossbow - Focus -->
 		<ingredient count="1" id="15868" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -4603,7 +4603,7 @@
 	<item>
 		<!-- Eternal Core Sword - Health -->
 		<ingredient count="1" id="15873" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
@@ -4613,7 +4613,7 @@
 	<item>
 		<!-- Eternal Core Sword - Focus -->
 		<ingredient count="1" id="15871" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
@@ -4623,7 +4623,7 @@
 	<item>
 		<!-- Eternal Core Sword - Haste -->
 		<ingredient count="1" id="15872" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
@@ -4633,7 +4633,7 @@
 	<item>
 		<!-- Mamba Edge - HP Drain -->
 		<ingredient count="1" id="15876" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
@@ -4643,7 +4643,7 @@
 	<item>
 		<!-- Mamba Edge - Haste -->
 		<ingredient count="1" id="15874" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
@@ -4651,19 +4651,19 @@
 		<production count="1" id="15986" />
 	</item>
 	<item>
-		<!-- Mamba Edge - Crt. Damage -->
+		<!-- Mamba Edge - Critical Damage -->
 		<ingredient count="1" id="15875" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
-		<!-- Mamba Edge {PvP} - Crt. Damage -->
+		<!-- Mamba Edge {PvP} - Critical Damage -->
 		<production count="1" id="15987" />
 	</item>
 	<item>
 		<!-- Eversor Mace - Health -->
 		<ingredient count="1" id="15879" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
@@ -4673,7 +4673,7 @@
 	<item>
 		<!-- Eversor Mace - HP Regeneration -->
 		<ingredient count="1" id="15877" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
@@ -4683,7 +4683,7 @@
 	<item>
 		<!-- Eversor Mace - HP Drain -->
 		<ingredient count="1" id="15878" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
@@ -4693,7 +4693,7 @@
 	<item>
 		<!-- Contristo Hammer - Health -->
 		<ingredient count="1" id="15882" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
@@ -4703,7 +4703,7 @@
 	<item>
 		<!-- Contristo Hammer - HP Drain -->
 		<ingredient count="1" id="15880" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
@@ -4713,7 +4713,7 @@
 	<item>
 		<!-- Contristo Hammer - HP Regeneration -->
 		<ingredient count="1" id="15881" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
@@ -4723,7 +4723,7 @@
 	<item>
 		<!-- Lava Saw - Health -->
 		<ingredient count="1" id="15885" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
@@ -4733,7 +4733,7 @@
 	<item>
 		<!-- Lava Saw - Focus -->
 		<ingredient count="1" id="15883" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
@@ -4743,7 +4743,7 @@
 	<item>
 		<!-- Lava Saw - Haste -->
 		<ingredient count="1" id="15884" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
@@ -4753,7 +4753,7 @@
 	<item>
 		<!-- Jade Claw - Health -->
 		<ingredient count="1" id="15888" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
@@ -4761,19 +4761,19 @@
 		<production count="1" id="16000" />
 	</item>
 	<item>
-		<!-- Jade Claw - Crt. Stun -->
+		<!-- Jade Claw - Critical Stun -->
 		<ingredient count="1" id="15886" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
-		<!-- Jade Claw {PvP} - Crt. Stun -->
+		<!-- Jade Claw {PvP} - Critical Stun -->
 		<production count="1" id="15998" />
 	</item>
 	<item>
 		<!-- Jade Claw - Focus -->
 		<ingredient count="1" id="15887" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
@@ -4783,7 +4783,7 @@
 	<item>
 		<!-- Demitelum - Guidance -->
 		<ingredient count="1" id="15891" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
@@ -4793,7 +4793,7 @@
 	<item>
 		<!-- Demitelum - Haste -->
 		<ingredient count="1" id="15889" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
@@ -4803,7 +4803,7 @@
 	<item>
 		<!-- Demitelum - Health -->
 		<ingredient count="1" id="15890" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
@@ -4813,7 +4813,7 @@
 	<item>
 		<!-- Sacredium - MP Regeneration -->
 		<ingredient count="1" id="15894" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
@@ -4823,7 +4823,7 @@
 	<item>
 		<!-- Sacredium - Mana Up -->
 		<ingredient count="1" id="15892" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
@@ -4833,7 +4833,7 @@
 	<item>
 		<!-- Sacredium - Acumen -->
 		<ingredient count="1" id="15893" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
@@ -4843,7 +4843,7 @@
 	<item>
 		<!-- Cyclic Cane - MP Regeneration -->
 		<ingredient count="1" id="15897" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
@@ -4853,7 +4853,7 @@
 	<item>
 		<!-- Cyclic Cane - Magic Hold -->
 		<ingredient count="1" id="15895" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
@@ -4863,7 +4863,7 @@
 	<item>
 		<!-- Cyclic Cane - Empower -->
 		<ingredient count="1" id="15896" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
@@ -4873,7 +4873,7 @@
 	<item>
 		<!-- Archangel Sword - Acumen -->
 		<ingredient count="1" id="15900" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
@@ -4883,7 +4883,7 @@
 	<item>
 		<!-- Archangel Sword - Magic Hold -->
 		<ingredient count="1" id="15898" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
@@ -4893,7 +4893,7 @@
 	<item>
 		<!-- Archangel Sword - Mana Up -->
 		<ingredient count="1" id="15899" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
@@ -4903,7 +4903,7 @@
 	<item>
 		<!-- Recurve Thorne Bow - Focus -->
 		<ingredient count="1" id="15903" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
@@ -4911,19 +4911,19 @@
 		<production count="1" id="16015" />
 	</item>
 	<item>
-		<!-- Recurve Thorne Bow - Crt. Slow -->
+		<!-- Recurve Thorne Bow - Critical Slow -->
 		<ingredient count="1" id="15901" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
-		<!-- Recurve Thorne Bow {PvP} - Crt. Slow -->
+		<!-- Recurve Thorne Bow {PvP} - Critical Slow -->
 		<production count="1" id="16013" />
 	</item>
 	<item>
 		<!-- Recurve Thorne Bow - Cheap Shot -->
 		<ingredient count="1" id="15902" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
@@ -4933,7 +4933,7 @@
 	<item>
 		<!-- Heavenstare Rapier - Health -->
 		<ingredient count="1" id="15906" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
@@ -4943,7 +4943,7 @@
 	<item>
 		<!-- Heavenstare Rapier - Focus -->
 		<ingredient count="1" id="15904" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
@@ -4953,7 +4953,7 @@
 	<item>
 		<!-- Heavenstare Rapier - Haste -->
 		<ingredient count="1" id="15905" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
@@ -4963,7 +4963,7 @@
 	<item>
 		<!-- Pyseal Blade - Health -->
 		<ingredient count="1" id="15909" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
@@ -4973,7 +4973,7 @@
 	<item>
 		<!-- Pyseal Blade - Focus -->
 		<ingredient count="1" id="15907" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
@@ -4983,7 +4983,7 @@
 	<item>
 		<!-- Pyseal Blade - Haste -->
 		<ingredient count="1" id="15908" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
@@ -4993,7 +4993,7 @@
 	<item>
 		<!-- Thorne Crossbow - Focus -->
 		<ingredient count="1" id="15912" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
@@ -5001,19 +5001,19 @@
 		<production count="1" id="16024" />
 	</item>
 	<item>
-		<!-- Thorne Crossbow - Crt. Slow -->
+		<!-- Thorne Crossbow - Critical Slow -->
 		<ingredient count="1" id="15910" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
-		<!-- Thorne Crossbow {PvP} - Crt. Slow -->
+		<!-- Thorne Crossbow {PvP} - Critical Slow -->
 		<production count="1" id="16022" />
 	</item>
 	<item>
 		<!-- Thorne Crossbow - Cheap Shot -->
 		<ingredient count="1" id="15911" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
@@ -5023,7 +5023,7 @@
 	<item>
 		<!-- Skull Edge Dual Daggers -->
 		<ingredient count="1" id="16152" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
@@ -5033,7 +5033,7 @@
 	<item>
 		<!-- Periel Dual Sword -->
 		<ingredient count="1" id="16154" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="42900" id="-300" />
 		<!-- Adena -->
 		<ingredient count="8576500" id="57" />
@@ -5043,7 +5043,7 @@
 	<item>
 		<!-- Mamba Edge Dual Daggers -->
 		<ingredient count="1" id="16156" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="14649800" id="57" />
@@ -5053,7 +5053,7 @@
 	<item>
 		<!-- Eternal Core Dual Sword -->
 		<ingredient count="1" id="16158" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="50000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="10563400" id="57" />
@@ -5063,7 +5063,7 @@
 	<item>
 		<!-- Armor of Nightmare -->
 		<ingredient count="1" id="374" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="2641" id="-300" />
 		<!-- Adena -->
 		<ingredient count="264100" id="57" />
@@ -5073,7 +5073,7 @@
 	<item>
 		<!-- Majestic Plate Armor -->
 		<ingredient count="1" id="2383" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="2641" id="-300" />
 		<!-- Adena -->
 		<ingredient count="264100" id="57" />
@@ -5081,19 +5081,19 @@
 		<production count="1" id="10794" />
 	</item>
 	<item>
-		<!-- Nightmarish Leather Armor -->
+		<!-- Leather Armor of Nightmare -->
 		<ingredient count="1" id="2394" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="1981" id="-300" />
 		<!-- Adena -->
 		<ingredient count="198100" id="57" />
-		<!-- Nightmarish Leather Armor {PvP} -->
+		<!-- Leather Armor of Nightmare {PvP} -->
 		<production count="1" id="10795" />
 	</item>
 	<item>
 		<!-- Majestic Leather Armor -->
 		<ingredient count="1" id="2395" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="1981" id="-300" />
 		<!-- Adena -->
 		<ingredient count="198100" id="57" />
@@ -5101,9 +5101,9 @@
 		<production count="1" id="10796" />
 	</item>
 	<item>
-		<!-- Nightmare Robe -->
+		<!-- Robe of Nightmare -->
 		<ingredient count="1" id="2408" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="1981" id="-300" />
 		<!-- Adena -->
 		<ingredient count="198100" id="57" />
@@ -5113,7 +5113,7 @@
 	<item>
 		<!-- Majestic Robe -->
 		<ingredient count="1" id="2409" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="1981" id="-300" />
 		<!-- Adena -->
 		<ingredient count="198100" id="57" />
@@ -5123,7 +5123,7 @@
 	<item>
 		<!-- Imperial Crusader Breastplate -->
 		<ingredient count="1" id="6373" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="3451" id="-300" />
 		<!-- Adena -->
 		<ingredient count="345105" id="57" />
@@ -5133,7 +5133,7 @@
 	<item>
 		<!-- Draconic Leather Armor -->
 		<ingredient count="1" id="6379" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="4206" id="-300" />
 		<!-- Adena -->
 		<ingredient count="420570" id="57" />
@@ -5143,7 +5143,7 @@
 	<item>
 		<!-- Major Arcana Robe -->
 		<ingredient count="1" id="6383" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="4206" id="-300" />
 		<!-- Adena -->
 		<ingredient count="420570" id="57" />
@@ -5153,7 +5153,7 @@
 	<item>
 		<!-- Dynasty Breast Plate -->
 		<ingredient count="1" id="9416" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8606" id="-300" />
 		<!-- Adena -->
 		<ingredient count="860640" id="57" />
@@ -5163,7 +5163,7 @@
 	<item>
 		<!-- Dynasty Breast Plate - Shield Master -->
 		<ingredient count="1" id="9417" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8606" id="-300" />
 		<!-- Adena -->
 		<ingredient count="860640" id="57" />
@@ -5173,7 +5173,7 @@
 	<item>
 		<!-- Dynasty Breast Plate - Weapon Master -->
 		<ingredient count="1" id="9418" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8606" id="-300" />
 		<!-- Adena -->
 		<ingredient count="860640" id="57" />
@@ -5183,7 +5183,7 @@
 	<item>
 		<!-- Dynasty Breast Plate - Force Master -->
 		<ingredient count="1" id="9419" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8606" id="-300" />
 		<!-- Adena -->
 		<ingredient count="860640" id="57" />
@@ -5193,7 +5193,7 @@
 	<item>
 		<!-- Dynasty Breast Plate - Bard -->
 		<ingredient count="1" id="9420" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8606" id="-300" />
 		<!-- Adena -->
 		<ingredient count="860640" id="57" />
@@ -5203,7 +5203,7 @@
 	<item>
 		<!-- Dynasty Leather Armor -->
 		<ingredient count="1" id="9425" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="6455" id="-300" />
 		<!-- Adena -->
 		<ingredient count="645480" id="57" />
@@ -5213,7 +5213,7 @@
 	<item>
 		<!-- Dynasty Leather Armor - Dagger Master -->
 		<ingredient count="1" id="9426" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="6455" id="-300" />
 		<!-- Adena -->
 		<ingredient count="645480" id="57" />
@@ -5223,7 +5223,7 @@
 	<item>
 		<!-- Dynasty Leather Armor - Bow Master -->
 		<ingredient count="1" id="9427" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="6455" id="-300" />
 		<!-- Adena -->
 		<ingredient count="645480" id="57" />
@@ -5233,7 +5233,7 @@
 	<item>
 		<!-- Dynasty Tunic -->
 		<ingredient count="1" id="9432" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="6455" id="-300" />
 		<!-- Adena -->
 		<ingredient count="645480" id="57" />
@@ -5243,7 +5243,7 @@
 	<item>
 		<!-- Dynasty Tunic - Healer -->
 		<ingredient count="1" id="9433" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="6455" id="-300" />
 		<!-- Adena -->
 		<ingredient count="645480" id="57" />
@@ -5253,7 +5253,7 @@
 	<item>
 		<!-- Dynasty Tunic - Enchanter -->
 		<ingredient count="1" id="9434" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="6455" id="-300" />
 		<!-- Adena -->
 		<ingredient count="645480" id="57" />
@@ -5263,7 +5263,7 @@
 	<item>
 		<!-- Dynasty Tunic - Summoner -->
 		<ingredient count="1" id="9435" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="6455" id="-300" />
 		<!-- Adena -->
 		<ingredient count="645480" id="57" />
@@ -5273,7 +5273,7 @@
 	<item>
 		<!-- Dynasty Tunic - Wizard -->
 		<ingredient count="1" id="9436" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="6455" id="-300" />
 		<!-- Adena -->
 		<ingredient count="645480" id="57" />
@@ -5283,7 +5283,7 @@
 	<item>
 		<!-- Dynasty Leather Armor - Force Master -->
 		<ingredient count="1" id="10126" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="6455" id="-300" />
 		<!-- Adena -->
 		<ingredient count="645480" id="57" />
@@ -5293,7 +5293,7 @@
 	<item>
 		<!-- Dynasty Leather Armor - Weapon Master -->
 		<ingredient count="1" id="10127" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="6455" id="-300" />
 		<!-- Adena -->
 		<ingredient count="645480" id="57" />
@@ -5303,7 +5303,7 @@
 	<item>
 		<!-- Dynasty Leather Armor - Enchanter -->
 		<ingredient count="1" id="10168" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="6455" id="-300" />
 		<!-- Adena -->
 		<ingredient count="645480" id="57" />
@@ -5313,7 +5313,7 @@
 	<item>
 		<!-- Dynasty Leather Armor - Summoner -->
 		<ingredient count="1" id="10214" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="6455" id="-300" />
 		<!-- Adena -->
 		<ingredient count="645480" id="57" />
@@ -5323,7 +5323,7 @@
 	<item>
 		<!-- Dynasty Platinum Plate - Shield Master -->
 		<ingredient count="1" id="10228" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="12689" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1268850" id="57" />
@@ -5333,7 +5333,7 @@
 	<item>
 		<!-- Dynasty Platinum Plate - Weapon Master -->
 		<ingredient count="1" id="10229" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="12689" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1268850" id="57" />
@@ -5343,7 +5343,7 @@
 	<item>
 		<!-- Dynasty Platinum Plate - Force Master -->
 		<ingredient count="1" id="10230" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="12689" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1268850" id="57" />
@@ -5353,7 +5353,7 @@
 	<item>
 		<!-- Dynasty Platinum Plate - Bard -->
 		<ingredient count="1" id="10231" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="12689" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1268850" id="57" />
@@ -5361,9 +5361,9 @@
 		<production count="1" id="10823" />
 	</item>
 	<item>
-		<!-- Dynasty Jewel Leather Mail - Dagger Master -->
+		<!-- Dynasty Jewel Leather Armor - Dagger Master -->
 		<ingredient count="1" id="10233" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="9516" id="-300" />
 		<!-- Adena -->
 		<ingredient count="951630" id="57" />
@@ -5371,9 +5371,9 @@
 		<production count="1" id="10825" />
 	</item>
 	<item>
-		<!-- Dynasty Jewel Leather Mail - Bow Master -->
+		<!-- Dynasty Jewel Leather Armor - Bow Master -->
 		<ingredient count="1" id="10234" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="9516" id="-300" />
 		<!-- Adena -->
 		<ingredient count="951630" id="57" />
@@ -5383,7 +5383,7 @@
 	<item>
 		<!-- Dynasty Silver Satin Tunic - Healer -->
 		<ingredient count="1" id="10236" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="9516" id="-300" />
 		<!-- Adena -->
 		<ingredient count="951630" id="57" />
@@ -5393,7 +5393,7 @@
 	<item>
 		<!-- Dynasty Silver Satin Tunic - Enchanter -->
 		<ingredient count="1" id="10237" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="9516" id="-300" />
 		<!-- Adena -->
 		<ingredient count="951630" id="57" />
@@ -5403,7 +5403,7 @@
 	<item>
 		<!-- Dynasty Silver Satin Tunic - Summoner -->
 		<ingredient count="1" id="10238" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="9516" id="-300" />
 		<!-- Adena -->
 		<ingredient count="951630" id="57" />
@@ -5413,7 +5413,7 @@
 	<item>
 		<!-- Dynasty Silver Satin Tunic - Wizard -->
 		<ingredient count="1" id="10239" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="9516" id="-300" />
 		<!-- Adena -->
 		<ingredient count="951630" id="57" />
@@ -5423,7 +5423,7 @@
 	<item>
 		<!-- Dynasty Jeweled Leather Armor - Force Master -->
 		<ingredient count="1" id="10487" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="9516" id="-300" />
 		<!-- Adena -->
 		<ingredient count="951630" id="57" />
@@ -5433,7 +5433,7 @@
 	<item>
 		<!-- Dynasty Jeweled Leather Armor - Weapon Master -->
 		<ingredient count="1" id="10488" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="9516" id="-300" />
 		<!-- Adena -->
 		<ingredient count="951630" id="57" />
@@ -5443,7 +5443,7 @@
 	<item>
 		<!-- Dynasty Jeweled Leather Armor - Enchanter -->
 		<ingredient count="1" id="10489" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="9516" id="-300" />
 		<!-- Adena -->
 		<ingredient count="951630" id="57" />
@@ -5453,7 +5453,7 @@
 	<item>
 		<!-- Dynasty Jeweled Leather Armor - Summoner -->
 		<ingredient count="1" id="10490" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="9516" id="-300" />
 		<!-- Adena -->
 		<ingredient count="951630" id="57" />
@@ -5463,7 +5463,7 @@
 	<item>
 		<!-- Vesper Breastplate -->
 		<ingredient count="1" id="13432" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="11700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="2333400" id="57" />
@@ -5473,7 +5473,7 @@
 	<item>
 		<!-- Vesper Leather Breastplate -->
 		<ingredient count="1" id="13433" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8800" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1750000" id="57" />
@@ -5483,7 +5483,7 @@
 	<item>
 		<!-- Vesper Tunic -->
 		<ingredient count="1" id="13434" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8800" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1750000" id="57" />
@@ -5493,7 +5493,7 @@
 	<item>
 		<!-- Vesper Noble Breastplate -->
 		<ingredient count="1" id="13435" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="14000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="2792000" id="57" />
@@ -5503,7 +5503,7 @@
 	<item>
 		<!-- Vesper Noble Leather Breastplate -->
 		<ingredient count="1" id="13436" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="10500" id="-300" />
 		<!-- Adena -->
 		<ingredient count="2094000" id="57" />
@@ -5513,7 +5513,7 @@
 	<item>
 		<!-- Vesper Noble Tunic -->
 		<ingredient count="1" id="13437" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="10500" id="-300" />
 		<!-- Adena -->
 		<ingredient count="2094000" id="57" />
@@ -5523,7 +5523,7 @@
 	<item>
 		<!-- Moirai Breastplate -->
 		<ingredient count="1" id="15609" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="12689" id="-300" />
 		<!-- Adena -->
 		<ingredient count="1268850" id="57" />
@@ -5533,7 +5533,7 @@
 	<item>
 		<!-- Moirai Leather Breastplate -->
 		<ingredient count="1" id="15610" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="9516" id="-300" />
 		<!-- Adena -->
 		<ingredient count="951630" id="57" />
@@ -5543,7 +5543,7 @@
 	<item>
 		<!-- Moirai Tunic -->
 		<ingredient count="1" id="15611" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="9516" id="-300" />
 		<!-- Adena -->
 		<ingredient count="951630" id="57" />
@@ -5553,7 +5553,7 @@
 	<item>
 		<!-- Vorpal Breastplate -->
 		<ingredient count="1" id="15592" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="14000" id="-300" />
 		<!-- Adena -->
 		<ingredient count="2792000" id="57" />
@@ -5563,7 +5563,7 @@
 	<item>
 		<!-- Vorpal Leather Breastplate -->
 		<ingredient count="1" id="15593" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="10500" id="-300" />
 		<!-- Adena -->
 		<ingredient count="2094000" id="57" />
@@ -5573,7 +5573,7 @@
 	<item>
 		<!-- Vorpal Tunic -->
 		<ingredient count="1" id="15594" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="10500" id="-300" />
 		<!-- Adena -->
 		<ingredient count="2094000" id="57" />
@@ -5583,17 +5583,17 @@
 	<item>
 		<!-- Elegia Breastplate -->
 		<ingredient count="1" id="15575" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="16700" id="-300" />
 		<!-- Adena -->
 		<ingredient count="3347650" id="57" />
-		<!-- Vesper Breastplate {PvP} -->
+		<!-- Elegia Breastplate {PvP} -->
 		<production count="1" id="16168" />
 	</item>
 	<item>
 		<!-- Elegia Leather Breastplate -->
 		<ingredient count="1" id="15576" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="12500" id="-300" />
 		<!-- Adena -->
 		<ingredient count="2510750" id="57" />
@@ -5603,7 +5603,7 @@
 	<item>
 		<!-- Elegia Tunic -->
 		<ingredient count="1" id="15577" />
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="12500" id="-300" />
 		<!-- Adena -->
 		<ingredient count="2510750" id="57" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/364790002.xml b/L2J_DataPack_BETA/dist/game/data/multisell/364790002.xml
index c120372a2a4378e80a9de9d5db6c1b7a0dc1ba04..bc650ed882cbd4cdaff306abf7b9c0ca9d97831a 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/364790002.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/364790002.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Sirra's Blade {PvP} - Haste -->
 		<ingredient count="1" id="10667" />
@@ -97,7 +97,7 @@
 		<production count="1" id="8803" />
 	</item>
 	<item>
-		<!-- Tiphon's Spear {PvP} - Long Blow -->
+		<!-- Tiphon's Spear {PvP} - Towering Blow -->
 		<ingredient count="1" id="10683" />
 		<!-- Tiphon's Spear - Towering Blow -->
 		<production count="1" id="8804" />
@@ -151,9 +151,9 @@
 		<production count="1" id="8812" />
 	</item>
 	<item>
-		<!-- Themis' Tongue {PvP} - Magic Mental Shield -->
+		<!-- Themis' Tongue {PvP} - Mental Shield -->
 		<ingredient count="1" id="10692" />
-		<!-- Themis' Tongue - Magic Mental Shield -->
+		<!-- Themis' Tongue - Mental Shield -->
 		<production count="1" id="8813" />
 	</item>
 	<item>
@@ -193,25 +193,25 @@
 		<production count="1" id="8819" />
 	</item>
 	<item>
-		<!-- Daimon Crystal {PvP} - Magic Mental Shield -->
+		<!-- Daimon Crystal {PvP} - Mental Shield -->
 		<ingredient count="1" id="10699" />
-		<!-- Daimon Crystal - Magic Mental Shield -->
+		<!-- Daimon Crystal - Mental Shield -->
 		<production count="1" id="8820" />
 	</item>
 	<item>
-		<!-- Eclair Bijou {PvP} - Haste -->
+		<!-- ?clair Bijou {PvP} - Haste -->
 		<ingredient count="1" id="10700" />
 		<!-- Eclair Bijou - Haste -->
 		<production count="1" id="9353" />
 	</item>
 	<item>
-		<!-- Eclair Bijou - PvP - Health -->
+		<!-- Eclair Bijou {PvP} - Health -->
 		<ingredient count="1" id="10701" />
 		<!-- Eclair Bijou - Health -->
 		<production count="1" id="9354" />
 	</item>
 	<item>
-		<!-- Eclair Bijou - PvP - Critical Poison -->
+		<!-- Eclair Bijou {PvP} - Critical Poison -->
 		<ingredient count="1" id="10702" />
 		<!-- Eclair Bijou - Critical Poison -->
 		<production count="1" id="9355" />
@@ -477,23 +477,23 @@
 	<item>
 		<!-- Sarunga {PvP} - Cheap Shot -->
 		<ingredient count="1" id="10746" />
-		<!-- Sarnga - Cheap Shot -->
+		<!-- Sarunga - Cheap Shot -->
 		<production count="1" id="9373" />
 	</item>
 	<item>
-		<!-- Sarunga - PvP - Focus -->
+		<!-- Sarunga {PvP} - Focus -->
 		<ingredient count="1" id="10747" />
-		<!-- Sarnga - Focus -->
+		<!-- Sarunga - Focus -->
 		<production count="1" id="9374" />
 	</item>
 	<item>
-		<!-- Sarunga - PvP - Critical Slow -->
+		<!-- Sarunga {PvP} - Critical Slow -->
 		<ingredient count="1" id="10748" />
-		<!-- Sarnga - Critical Slow -->
+		<!-- Sarunga - Critical Slow -->
 		<production count="1" id="9375" />
 	</item>
 	<item>
-		<!-- Tallum Blade*Dark Legion {PvP} -->
+		<!-- Tallum Blade*Dark Legion's Edge {PvP} -->
 		<ingredient count="1" id="10749" />
 		<!-- Tallum Blade*Dark Legion's Edge -->
 		<production count="1" id="6580" />
@@ -505,13 +505,13 @@
 		<production count="1" id="9854" />
 	</item>
 	<item>
-		<!-- Dynasty Sword - PvP - Health -->
+		<!-- Dynasty Sword {PvP} - Health -->
 		<ingredient count="1" id="10751" />
 		<!-- Dynasty Sword - Health -->
 		<production count="1" id="9855" />
 	</item>
 	<item>
-		<!-- Dynasty Sword - PvP - Light -->
+		<!-- Dynasty Sword {PvP} - Light -->
 		<ingredient count="1" id="10752" />
 		<!-- Dynasty Sword - Light -->
 		<production count="1" id="9856" />
@@ -523,13 +523,13 @@
 		<production count="1" id="9857" />
 	</item>
 	<item>
-		<!-- Dynasty Blade - PvP - Health -->
+		<!-- Dynasty Blade {PvP} - Health -->
 		<ingredient count="1" id="10754" />
 		<!-- Dynasty Blade - Health -->
 		<production count="1" id="9858" />
 	</item>
 	<item>
-		<!-- Dynasty Blade - PvP - Light -->
+		<!-- Dynasty Blade {PvP} - Light -->
 		<ingredient count="1" id="10755" />
 		<!-- Dynasty Blade - Light -->
 		<production count="1" id="9859" />
@@ -739,13 +739,13 @@
 		<production count="1" id="9385" />
 	</item>
 	<item>
-		<!-- Dynasty Crossbow - PvP - Guidance -->
+		<!-- Dynasty Crossbow {PvP} - Guidance -->
 		<ingredient count="1" id="10790" />
 		<!-- Dynasty Crossbow - Guidance -->
 		<production count="1" id="9386" />
 	</item>
 	<item>
-		<!-- Dynasty Crossbow - PvP - Focus -->
+		<!-- Dynasty Crossbow {PvP} - Focus -->
 		<ingredient count="1" id="10791" />
 		<!-- Dynasty Crossbow - Focus -->
 		<production count="1" id="9387" />
@@ -943,9 +943,9 @@
 		<production count="1" id="2383" />
 	</item>
 	<item>
-		<!-- Nightmarish Leather Armor {PvP} -->
+		<!-- Leather Armor of Nightmare {PvP} -->
 		<ingredient count="1" id="10795" />
-		<!-- Nightmarish Leather Armor -->
+		<!-- Leather Armor of Nightmare -->
 		<production count="1" id="2394" />
 	</item>
 	<item>
@@ -957,7 +957,7 @@
 	<item>
 		<!-- Robe of Nightmare {PvP} -->
 		<ingredient count="1" id="10797" />
-		<!-- Nightmare Robe -->
+		<!-- Robe of Nightmare -->
 		<production count="1" id="2408" />
 	</item>
 	<item>
@@ -1119,19 +1119,19 @@
 	<item>
 		<!-- Dynasty Jewel Leather Armor {PvP} -->
 		<ingredient count="1" id="10824" />
-		<!-- Dynasty Jewel Leather Mail -->
+		<!-- Dynasty Jewel Leather Armor -->
 		<production count="1" id="10232" />
 	</item>
 	<item>
 		<!-- Dynasty Jewel Leather Armor {PvP} - Dagger Master -->
 		<ingredient count="1" id="10825" />
-		<!-- Dynasty Jewel Leather Mail - Dagger Master -->
+		<!-- Dynasty Jewel Leather Armor - Dagger Master -->
 		<production count="1" id="10233" />
 	</item>
 	<item>
 		<!-- Dynasty Jewel Leather Armor {PvP} - Bow Master -->
 		<ingredient count="1" id="10826" />
-		<!-- Dynasty Jewel Leather Mail - Bow Master -->
+		<!-- Dynasty Jewel Leather Armor - Bow Master -->
 		<production count="1" id="10234" />
 	</item>
 	<item>
@@ -1795,7 +1795,7 @@
 		<production count="1" id="14126" />
 	</item>
 	<item>
-		<!-- Vesper Shaper {PvP} - Crt. Damage -->
+		<!-- Vesper Shaper {PvP} - Critical Damage -->
 		<ingredient count="1" id="14487" />
 		<!-- Vesper Shaper - Critical Damage -->
 		<production count="1" id="14127" />
@@ -1825,7 +1825,7 @@
 		<production count="1" id="14131" />
 	</item>
 	<item>
-		<!-- Vesper Fighter {PvP} - Crt. Stun -->
+		<!-- Vesper Fighter {PvP} - Critical Stun -->
 		<ingredient count="1" id="14492" />
 		<!-- Vesper Fighter - Critical Stun -->
 		<production count="1" id="14132" />
@@ -1933,7 +1933,7 @@
 		<production count="1" id="14149" />
 	</item>
 	<item>
-		<!-- Vesper Thrower {PvP} - Crt. Slow -->
+		<!-- Vesper Thrower {PvP} - Critical Slow -->
 		<ingredient count="1" id="14510" />
 		<!-- Vesper Thrower - Critical Slow -->
 		<production count="1" id="14150" />
@@ -1957,21 +1957,21 @@
 		<production count="1" id="14153" />
 	</item>
 	<item>
-		<!-- Vesper Sheutjeh {PvP} - Cheap Shot -->
+		<!-- Vesper Shooter {PvP} - Cheap Shot -->
 		<ingredient count="1" id="14514" />
-		<!-- Vesper Sheutjeh - Cheap Shot -->
+		<!-- Vesper Shooter - Cheap Shot -->
 		<production count="1" id="14154" />
 	</item>
 	<item>
-		<!-- Vesper Sheutjeh {PvP} - Focus -->
+		<!-- Vesper Shooter {PvP} - Focus -->
 		<ingredient count="1" id="14515" />
-		<!-- Vesper Sheutjeh - Focus -->
+		<!-- Vesper Shooter - Focus -->
 		<production count="1" id="14155" />
 	</item>
 	<item>
-		<!-- Vesper Sheutjeh {PvP} - Crt. Slow -->
+		<!-- Vesper Shooter {PvP} - Critical Slow -->
 		<ingredient count="1" id="14516" />
-		<!-- Vesper Sheutjeh - Critical Slow -->
+		<!-- Vesper Shooter - Critical Slow -->
 		<production count="1" id="14156" />
 	</item>
 	<item>
@@ -2065,7 +2065,7 @@
 		<production count="1" id="15594" />
 	</item>
 	<item>
-		<!-- Vesper Breastplate {PvP} -->
+		<!-- Elegia Breastplate {PvP} -->
 		<ingredient count="1" id="16168" />
 		<!-- Elegia Breastplate -->
 		<production count="1" id="15575" />
@@ -2161,13 +2161,13 @@
 		<production count="1" id="11134" />
 	</item>
 	<item>
-		<!-- Naga Storm - Molar {PvP} - Crt. Damage -->
+		<!-- Naga Storm - Molar {PvP} - Critical Damage -->
 		<ingredient count="1" id="12853" />
 		<!-- Naga Storm - Molar - Critical Damage -->
 		<production count="1" id="11135" />
 	</item>
 	<item>
-		<!-- Naga Storm - Molar {PvP} - Backblow -->
+		<!-- Naga Storm - Molar {PvP} - Back Blow -->
 		<ingredient count="1" id="12854" />
 		<!-- Naga Storm - Molar - Back Blow -->
 		<production count="1" id="11136" />
@@ -2179,9 +2179,9 @@
 		<production count="1" id="11178" />
 	</item>
 	<item>
-		<!-- Tiphon's Spear - Landslide {PvP} - Longblow -->
+		<!-- Tiphon's Spear - Landslide {PvP} - Towering Blow -->
 		<ingredient count="1" id="12886" />
-		<!-- Tiphon's Spear - Landslide - Long Blow -->
+		<!-- Tiphon's Spear - Landslide - Towering Blow -->
 		<production count="1" id="11179" />
 	</item>
 	<item>
@@ -2221,7 +2221,7 @@
 		<production count="1" id="11167" />
 	</item>
 	<item>
-		<!-- Sobekk's Hurricane - Landslide {PvP} - Crt. Drain -->
+		<!-- Sobekk's Hurricane - Landslide {PvP} - Critical Drain -->
 		<ingredient count="1" id="12878" />
 		<!-- Sobekk's Hurricane - Landslide - Critical Drain -->
 		<production count="1" id="11168" />
@@ -2233,9 +2233,9 @@
 		<production count="1" id="11183" />
 	</item>
 	<item>
-		<!-- Themis' Tongue - Cleverness {PvP} - Magic Mental Shield -->
+		<!-- Themis' Tongue - Cleverness {PvP} - Mental Shield -->
 		<ingredient count="1" id="12890" />
-		<!-- Themis' Tongue - Cleverness - Magic Mental Shield -->
+		<!-- Themis' Tongue - Cleverness - Mental Shield -->
 		<production count="1" id="11184" />
 	</item>
 	<item>
@@ -2275,25 +2275,25 @@
 		<production count="1" id="11139" />
 	</item>
 	<item>
-		<!-- Daimon Crystal - Wisdom {PvP} - Magic Mental Shield -->
+		<!-- Daimon Crystal - Wisdom {PvP} - Mental Shield -->
 		<ingredient count="1" id="12857" />
-		<!-- Daimon Crystal - Wisdom - Magic Mental Shield -->
+		<!-- Daimon Crystal - Wisdom - Mental Shield -->
 		<production count="1" id="11140" />
 	</item>
 	<item>
-		<!-- Eclair Bijou - Landslide {PvP} - Haste -->
+		<!-- ?clair Bijou - Landslide {PvP} - Haste -->
 		<ingredient count="1" id="12882" />
 		<!-- Eclair Bijou - Landslide - Haste -->
 		<production count="1" id="11174" />
 	</item>
 	<item>
-		<!-- Eclair Bijou - Landslide {PvP} - Health -->
+		<!-- ?clair Bijou - Landslide {PvP} - Health -->
 		<ingredient count="1" id="12883" />
 		<!-- Eclair Bijou - Landslide - Health -->
 		<production count="1" id="11175" />
 	</item>
 	<item>
-		<!-- Eclair Bijou - Landslide {PvP} - Critical Poison -->
+		<!-- ?clair Bijou - Landslide {PvP} - Critical Poison -->
 		<ingredient count="1" id="12884" />
 		<!-- Eclair Bijou - Landslide - Critical Poison -->
 		<production count="1" id="11176" />
@@ -2413,7 +2413,7 @@
 		<production count="1" id="11205" />
 	</item>
 	<item>
-		<!-- Angel Slayer - Concentration {PvP} - Crt. Damage -->
+		<!-- Angel Slayer - Concentration {PvP} - Critical Damage -->
 		<ingredient count="1" id="12922" />
 		<!-- Angel Slayer - Concentration - Critical Damage -->
 		<production count="1" id="11227" />
@@ -2515,7 +2515,7 @@
 		<production count="1" id="11200" />
 	</item>
 	<item>
-		<!-- Draconic Bow - Earth {PvP} - Crt. Slow -->
+		<!-- Draconic Bow - Earth {PvP} - Critical Slow -->
 		<ingredient count="1" id="12903" />
 		<!-- Draconic Bow - Earth - Critical Slow -->
 		<production count="1" id="11201" />
@@ -2569,13 +2569,13 @@
 		<production count="1" id="11216" />
 	</item>
 	<item>
-		<!-- Sarunga - Earth {PvP} - Crt. Slow -->
+		<!-- Sarunga - Earth {PvP} - Critical Slow -->
 		<ingredient count="1" id="12915" />
 		<!-- Sarunga - Earth - Critical Slow -->
 		<production count="1" id="11217" />
 	</item>
 	<item>
-		<!-- Tallum Blade*Dark Legion - Lightning {PvP} -->
+		<!-- Tallum Blade*Dark Legion's Edge - Lightning {PvP} -->
 		<ingredient count="1" id="12928" />
 		<!-- Tallum Blade*Dark Legion's Edge - Lightning -->
 		<production count="1" id="11234" />
@@ -2845,253 +2845,253 @@
 		<production count="1" id="14526" />
 	</item>
 	<item>
-		<!-- Vesper Cutter- Thunder {PvP} -->
+		<!-- Vesper Cutter- Thunder {PvP} - Haste -->
 		<ingredient count="1" id="16179" />
 		<!-- Vesper Cutter - Thunder - Haste -->
 		<production count="1" id="16056" />
 	</item>
 	<item>
-		<!-- Vesper Cutter- Thunder {PvP} -->
+		<!-- Vesper Cutter- Thunder {PvP} - Health -->
 		<ingredient count="1" id="16180" />
 		<!-- Vesper Cutter - Thunder - Health -->
 		<production count="1" id="16057" />
 	</item>
 	<item>
-		<!-- Vesper Cutter- Thunder {PvP} -->
+		<!-- Vesper Cutter- Thunder {PvP} - Focus -->
 		<ingredient count="1" id="16181" />
 		<!-- Vesper Cutter - Thunder - Focus -->
 		<production count="1" id="16058" />
 	</item>
 	<item>
-		<!-- Vesper Slasher- Gail {PvP} -->
+		<!-- Vesper Slasher- Gale {PvP} - Haste -->
 		<ingredient count="1" id="16182" />
 		<!-- Vesper Slasher - Gale - Haste -->
 		<production count="1" id="16059" />
 	</item>
 	<item>
-		<!-- Vesper Slasher- Gail {PvP} -->
+		<!-- Vesper Slasher- Gale {PvP} - Health -->
 		<ingredient count="1" id="16183" />
 		<!-- Vesper Slasher - Gale - Health -->
 		<production count="1" id="16060" />
 	</item>
 	<item>
-		<!-- Vesper Slasher- Gail {PvP} -->
+		<!-- Vesper Slasher- Gale {PvP} - Focus -->
 		<ingredient count="1" id="16184" />
 		<!-- Vesper Slasher - Gale - Focus -->
 		<production count="1" id="16061" />
 	</item>
 	<item>
-		<!-- Vesper Buster - Cleverness {PvP} -->
+		<!-- Vesper Buster - Cleverness {PvP} - Mana Up -->
 		<ingredient count="1" id="16185" />
 		<!-- Vesper Buster - Cleverness - Mana Up -->
 		<production count="1" id="16062" />
 	</item>
 	<item>
-		<!-- Vesper Buster - Cleverness {PvP} -->
+		<!-- Vesper Buster - Cleverness {PvP} - Acumen -->
 		<ingredient count="1" id="16186" />
 		<!-- Vesper Buster - Cleverness - Acumen -->
 		<production count="1" id="16063" />
 	</item>
 	<item>
-		<!-- Vesper Buster - Cleverness {PvP} -->
+		<!-- Vesper Buster - Cleverness {PvP} - Magic Hold -->
 		<ingredient count="1" id="16187" />
 		<!-- Vesper Buster - Cleverness - Magic Hold -->
 		<production count="1" id="16064" />
 	</item>
 	<item>
-		<!-- Vesper Shaper - Gail {PvP} -->
+		<!-- Vesper Shaper - Gale {PvP} - Critical Damage -->
 		<ingredient count="1" id="16188" />
-		<!-- Vesper Shaper - Gale - Crt. Damage -->
+		<!-- Vesper Shaper - Gale - Critical Damage -->
 		<production count="1" id="16065" />
 	</item>
 	<item>
-		<!-- Vesper Shaper - Gail {PvP} -->
+		<!-- Vesper Shaper - Gale {PvP} - HP Drain -->
 		<ingredient count="1" id="16189" />
 		<!-- Vesper Shaper - Gale - HP Drain -->
 		<production count="1" id="16066" />
 	</item>
 	<item>
-		<!-- Vesper Shaper - Gail {PvP} -->
+		<!-- Vesper Shaper - Gale {PvP} - Haste -->
 		<ingredient count="1" id="16190" />
 		<!-- Vesper Shaper - Gale - Haste -->
 		<production count="1" id="16067" />
 	</item>
 	<item>
-		<!-- Vesper Fighter - Gail {PvP} -->
+		<!-- Vesper Fighter - Gale {PvP} - Focus -->
 		<ingredient count="1" id="16191" />
 		<!-- Vesper Fighter - Gale - Focus -->
 		<production count="1" id="16068" />
 	</item>
 	<item>
-		<!-- Vesper Fighter - Gail {PvP} -->
+		<!-- Vesper Fighter - Gale {PvP} - Health -->
 		<ingredient count="1" id="16192" />
 		<!-- Vesper Fighter - Gale - Health -->
 		<production count="1" id="16069" />
 	</item>
 	<item>
-		<!-- Vesper Fighter - Gail {PvP} -->
+		<!-- Vesper Fighter - Gale {PvP} - Critical Stun -->
 		<ingredient count="1" id="16193" />
-		<!-- Vesper Fighter - Gale - Crt. Stun -->
+		<!-- Vesper Fighter - Gale - Critical Stun -->
 		<production count="1" id="16070" />
 	</item>
 	<item>
-		<!-- Vesper Stormer - Thunder {PvP} -->
+		<!-- Vesper Stormer - Thunder {PvP} - Health -->
 		<ingredient count="1" id="16194" />
 		<!-- Vesper Stormer - Thunder - Health -->
 		<production count="1" id="16071" />
 	</item>
 	<item>
-		<!-- Vesper Stormer - Thunder {PvP} -->
+		<!-- Vesper Stormer - Thunder {PvP} - Guidance -->
 		<ingredient count="1" id="16195" />
 		<!-- Vesper Stormer - Thunder - Guidance -->
 		<production count="1" id="16072" />
 	</item>
 	<item>
-		<!-- Vesper Stormer - Thunder {PvP} -->
+		<!-- Vesper Stormer - Thunder {PvP} - Haste -->
 		<ingredient count="1" id="16196" />
 		<!-- Vesper Stormer - Thunder - Haste -->
 		<production count="1" id="16073" />
 	</item>
 	<item>
-		<!-- Vesper Avenger - Landslide {PvP} -->
+		<!-- Vesper Avenger - Landslide {PvP} - HP Drain -->
 		<ingredient count="1" id="16197" />
 		<!-- Vesper Avenger - Landslide - HP Drain -->
 		<production count="1" id="16074" />
 	</item>
 	<item>
-		<!-- Vesper Avenger - Landslide {PvP} -->
+		<!-- Vesper Avenger - Landslide {PvP} - Health -->
 		<ingredient count="1" id="16198" />
 		<!-- Vesper Avenger - Landslide - Health -->
 		<production count="1" id="16075" />
 	</item>
 	<item>
-		<!-- Vesper Avenger - Landslide {PvP} -->
+		<!-- Vesper Avenger - Landslide {PvP} - HP Regeneration -->
 		<ingredient count="1" id="16199" />
 		<!-- Vesper Avenger - Landslide - HP Regeneration -->
 		<production count="1" id="16076" />
 	</item>
 	<item>
-		<!-- Vesper Retributer - Gail {PvP} -->
+		<!-- Vesper Retributer - Gale {PvP} - HP Regeneration -->
 		<ingredient count="1" id="16200" />
 		<!-- Vesper Retributer - Gale - HP Regeneration -->
 		<production count="1" id="16077" />
 	</item>
 	<item>
-		<!-- Vesper Retributer - Gail {PvP} -->
+		<!-- Vesper Retributer - Gale {PvP} - Health -->
 		<ingredient count="1" id="16201" />
 		<!-- Vesper Retributer - Gale - Health -->
 		<production count="1" id="16078" />
 	</item>
 	<item>
-		<!-- Vesper Retributer - Gail {PvP} -->
+		<!-- Vesper Retributer - Gale {PvP} - HP Drain -->
 		<ingredient count="1" id="16202" />
 		<!-- Vesper Retributer - Gale - HP Drain -->
 		<production count="1" id="16079" />
 	</item>
 	<item>
-		<!-- Vesper Caster - Cleverness {PvP} -->
+		<!-- Vesper Caster - Cleverness {PvP} - Acumen -->
 		<ingredient count="1" id="16203" />
 		<!-- Vesper Caster - Cleverness - Acumen -->
 		<production count="1" id="16080" />
 	</item>
 	<item>
-		<!-- Vesper Caster - Cleverness {PvP} -->
+		<!-- Vesper Caster - Cleverness {PvP} - MP Regeneration -->
 		<ingredient count="1" id="16204" />
 		<!-- Vesper Caster - Cleverness - MP Regeneration -->
 		<production count="1" id="16081" />
 	</item>
 	<item>
-		<!-- Vesper Caster - Cleverness {PvP} -->
+		<!-- Vesper Caster - Cleverness {PvP} - Mana Up -->
 		<ingredient count="1" id="16205" />
 		<!-- Vesper Caster - Cleverness - Mana Up -->
 		<production count="1" id="16082" />
 	</item>
 	<item>
-		<!-- Vesper Singer - Tidal Wave {PvP} -->
+		<!-- Vesper Singer - Hail {PvP} - Empower -->
 		<ingredient count="1" id="16206" />
-		<!-- Vesper Singer - Tidal Wave - Empower -->
+		<!-- Vesper Singer - Hail - Empower -->
 		<production count="1" id="16083" />
 	</item>
 	<item>
-		<!-- Vesper Singer - Tidal Wave {PvP} -->
+		<!-- Vesper Singer - Hail {PvP} - MP Regeneration -->
 		<ingredient count="1" id="16207" />
-		<!-- Vesper Singer - Tidal Wave - MP Regeneration -->
+		<!-- Vesper Singer - Hail - MP Regeneration -->
 		<production count="1" id="16084" />
 	</item>
 	<item>
-		<!-- Vesper Singer - Tidal Wave {PvP} -->
+		<!-- Vesper Singer - Hail {PvP} - Magic Hold -->
 		<ingredient count="1" id="16208" />
-		<!-- Vesper Singer - Tidal Wave - Magic Hold -->
+		<!-- Vesper Singer - Hail - Magic Hold -->
 		<production count="1" id="16085" />
 	</item>
 	<item>
-		<!-- Vesper Thrower - Clairvoyance {PvP} -->
+		<!-- Vesper Thrower - Clairvoyance {PvP} - Cheap Shot -->
 		<ingredient count="1" id="16209" />
 		<!-- Vesper Thrower - Clairvoyance - Cheap Shot -->
 		<production count="1" id="16086" />
 	</item>
 	<item>
-		<!-- Vesper Thrower - Clairvoyance {PvP} -->
+		<!-- Vesper Thrower - Clairvoyance {PvP} - Focus -->
 		<ingredient count="1" id="16210" />
 		<!-- Vesper Thrower - Clairvoyance - Focus -->
 		<production count="1" id="16087" />
 	</item>
 	<item>
-		<!-- Vesper Thrower - Clairvoyance {PvP} -->
+		<!-- Vesper Thrower - Clairvoyance {PvP} - Critical Slow -->
 		<ingredient count="1" id="16211" />
-		<!-- Vesper Thrower - Clairvoyance - Crt. Slow -->
+		<!-- Vesper Thrower - Clairvoyance - Critical Slow -->
 		<production count="1" id="16088" />
 	</item>
 	<item>
-		<!-- Vesper Pincer- Thunder {PvP} -->
+		<!-- Vesper Pincer- Thunder {PvP} - Haste -->
 		<ingredient count="1" id="16212" />
 		<!-- Vesper Pincer - Thunder - Haste -->
 		<production count="1" id="16089" />
 	</item>
 	<item>
-		<!-- Vesper Pincer- Thunder {PvP} -->
+		<!-- Vesper Pincer- Thunder {PvP} - Health -->
 		<ingredient count="1" id="16213" />
 		<!-- Vesper Pincer - Thunder - Health -->
 		<production count="1" id="16090" />
 	</item>
 	<item>
-		<!-- Vesper Pincer- Thunder {PvP} -->
+		<!-- Vesper Pincer- Thunder {PvP} - Focus -->
 		<ingredient count="1" id="16214" />
 		<!-- Vesper Pincer - Thunder - Focus -->
 		<production count="1" id="16091" />
 	</item>
 	<item>
-		<!-- Vesper Schutze - Clairvoyance {PvP} -->
+		<!-- Vesper Shooter - Clairvoyance {PvP} - Cheap Shot -->
 		<ingredient count="1" id="16215" />
-		<!-- Vesper Schutze - Clairvoyance - Cheap Shot -->
+		<!-- Vesper Shooter - Clairvoyance - Cheap Shot -->
 		<production count="1" id="16092" />
 	</item>
 	<item>
-		<!-- Vesper Schutze - Clairvoyance {PvP} -->
+		<!-- Vesper Shooter - Clairvoyance {PvP} - Focus -->
 		<ingredient count="1" id="16216" />
-		<!-- Vesper Schutze - Clairvoyance - Focus -->
+		<!-- Vesper Shooter - Clairvoyance - Focus -->
 		<production count="1" id="16093" />
 	</item>
 	<item>
-		<!-- Vesper Schutze - Clairvoyance {PvP} -->
+		<!-- Vesper Shooter - Clairvoyance {PvP} - Critical Slow -->
 		<ingredient count="1" id="16217" />
-		<!-- Vesper Schutze - Clairvoyance - Crt. Slow -->
+		<!-- Vesper Shooter - Clairvoyance - Critical Slow -->
 		<production count="1" id="16094" />
 	</item>
 	<item>
-		<!-- Vesper Nagan - Gail {PvP} -->
+		<!-- Vesper Nagan - Gale {PvP} - Haste -->
 		<ingredient count="1" id="16218" />
 		<!-- Vesper Nagan - Gale - Haste -->
 		<production count="1" id="16095" />
 	</item>
 	<item>
-		<!-- Vesper Nagan - Gail {PvP} -->
+		<!-- Vesper Nagan - Gale {PvP} - Health -->
 		<ingredient count="1" id="16219" />
 		<!-- Vesper Nagan - Gale - Health -->
 		<production count="1" id="16096" />
 	</item>
 	<item>
-		<!-- Vesper Nagan - Gail {PvP} -->
+		<!-- Vesper Nagan - Gale {PvP} - Focus -->
 		<ingredient count="1" id="16220" />
 		<!-- Vesper Nagan - Gale - Focus -->
 		<production count="1" id="16097" />
@@ -3313,9 +3313,9 @@
 		<production count="1" id="15833" />
 	</item>
 	<item>
-		<!-- Skull Edge {PvP} - Crt. Damage -->
+		<!-- Skull Edge {PvP} - Critical Damage -->
 		<ingredient count="1" id="15946" />
-		<!-- Skull Edge - Crt. Damage -->
+		<!-- Skull Edge - Critical Damage -->
 		<production count="1" id="15834" />
 	</item>
 	<item>
@@ -3379,9 +3379,9 @@
 		<production count="1" id="15841" />
 	</item>
 	<item>
-		<!-- Octo Claw {PvP} - Crt. Stun -->
+		<!-- Octo Claw {PvP} - Critical Stun -->
 		<ingredient count="1" id="15957" />
-		<!-- Octo Claw - Crt. Stun -->
+		<!-- Octo Claw - Critical Stun -->
 		<production count="1" id="15845" />
 	</item>
 	<item>
@@ -3469,9 +3469,9 @@
 		<production count="1" id="15856" />
 	</item>
 	<item>
-		<!-- Skull Carnium Bow {PvP} - Crt. Slow -->
+		<!-- Skull Carnium Bow {PvP} - Critical Slow -->
 		<ingredient count="1" id="15972" />
-		<!-- Skull Carnium Bow - Crt. Slow -->
+		<!-- Skull Carnium Bow - Critical Slow -->
 		<production count="1" id="15860" />
 	</item>
 	<item>
@@ -3523,9 +3523,9 @@
 		<production count="1" id="15865" />
 	</item>
 	<item>
-		<!-- Dominion Crossbow {PvP} - Crt. Slow -->
+		<!-- Dominion Crossbow {PvP} - Critical Slow -->
 		<ingredient count="1" id="15981" />
-		<!-- Dominion Crossbow - Crt. Slow -->
+		<!-- Dominion Crossbow - Critical Slow -->
 		<production count="1" id="15869" />
 	</item>
 	<item>
@@ -3571,9 +3571,9 @@
 		<production count="1" id="15874" />
 	</item>
 	<item>
-		<!-- Mamba Edge {PvP} - Crt. Damage -->
+		<!-- Mamba Edge {PvP} - Critical Damage -->
 		<ingredient count="1" id="15987" />
-		<!-- Mamba Edge - Crt. Damage -->
+		<!-- Mamba Edge - Critical Damage -->
 		<production count="1" id="15875" />
 	</item>
 	<item>
@@ -3637,9 +3637,9 @@
 		<production count="1" id="15888" />
 	</item>
 	<item>
-		<!-- Jade Claw {PvP} - Crt. Stun -->
+		<!-- Jade Claw {PvP} - Critical Stun -->
 		<ingredient count="1" id="15998" />
-		<!-- Jade Claw - Crt. Stun -->
+		<!-- Jade Claw - Critical Stun -->
 		<production count="1" id="15886" />
 	</item>
 	<item>
@@ -3727,9 +3727,9 @@
 		<production count="1" id="15903" />
 	</item>
 	<item>
-		<!-- Recurve Thorne Bow {PvP} - Crt. Slow -->
+		<!-- Recurve Thorne Bow {PvP} - Critical Slow -->
 		<ingredient count="1" id="16013" />
-		<!-- Recurve Thorne Bow - Crt. Slow -->
+		<!-- Recurve Thorne Bow - Critical Slow -->
 		<production count="1" id="15901" />
 	</item>
 	<item>
@@ -3781,9 +3781,9 @@
 		<production count="1" id="15912" />
 	</item>
 	<item>
-		<!-- Thorne Crossbow {PvP} - Crt. Slow -->
+		<!-- Thorne Crossbow {PvP} - Critical Slow -->
 		<ingredient count="1" id="16022" />
-		<!-- Thorne Crossbow - Crt. Slow -->
+		<!-- Thorne Crossbow - Critical Slow -->
 		<production count="1" id="15910" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/364790003.xml b/L2J_DataPack_BETA/dist/game/data/multisell/364790003.xml
index 3e504ac46a51ad0b8c736f6d646e6a40c48ef5e5..756775ec74e898dea12061b441285afa54d30676 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/364790003.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/364790003.xml
@@ -1,73 +1,73 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="500" id="-300" />
 		<!-- Black Talisman - Escape -->
 		<production count="1" id="9923" />
 	</item>
 	<item>
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="500" id="-300" />
 		<!-- White Talisman of Freedom -->
 		<production count="1" id="9966" />
 	</item>
 	<item>
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="500" id="-300" />
 		<!-- Red Talisman - Max CP -->
 		<production count="1" id="12815" />
 	</item>
 	<item>
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="500" id="-300" />
 		<!-- Red Talisman - CP Regeneration -->
 		<production count="1" id="12816" />
 	</item>
 	<item>
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="500" id="-300" />
 		<!-- Yellow Talisman - Increase Force -->
 		<production count="1" id="12817" />
 	</item>
 	<item>
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="500" id="-300" />
 		<!-- Yellow Talisman - Damage Transition -->
 		<production count="1" id="12818" />
 	</item>
 	<item>
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="30" id="-300" />
 		<!-- Recovery Spellbook for Combat Use -->
 		<production count="1" id="12819" />
 	</item>
 	<item>
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="270" id="-300" />
 		<!-- Battleground Blessed Scroll of Escape -->
 		<production count="1" id="10149" />
 	</item>
 	<item>
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="14" id="-300" />
 		<!-- Battle Health Recovery Potion -->
 		<production count="1" id="10152" />
 	</item>
 	<item>
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="92" id="-300" />
 		<!-- Battle Mana Recovery Potion -->
 		<production count="1" id="10153" />
 	</item>
 	<item>
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="40" id="-300" />
 		<!-- Battle CP Recovery Potion -->
 		<production count="1" id="10154" />
 	</item>
 	<item>
-		<!-- Fame points -->
+		<!-- Fame Points -->
 		<ingredient count="8000" id="-300" />
 		<!-- Agathion Summon Bracelet - Knight -->
 		<production count="1" id="13756" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/364810001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/364810001.xml
index c40195453bdbb6728a19cec7d6ca2ab25956249f..8e32e2214a060cc43a352ae877e54fbd117a0f22 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/364810001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/364810001.xml
@@ -1,39 +1,39 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Gludio Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Human Mercenary -->
 		<production count="1" id="13569" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Gludio Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Elf Mercenary -->
 		<production count="1" id="13570" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Gludio Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Elf Mercenary -->
 		<production count="1" id="13570" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Gludio Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Orc Mercenary -->
 		<production count="1" id="13572" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Gludio Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Dwarf Mercenary -->
 		<production count="1" id="13573" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Gludio Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Kamael Mercenary -->
 		<production count="1" id="13574" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/364810002.xml b/L2J_DataPack_BETA/dist/game/data/multisell/364810002.xml
index ef39e51838a20fc14af4aa66e618204b604724b9..72815687c4c849a131288ba2eb6ba5f76362178c 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/364810002.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/364810002.xml
@@ -1,39 +1,39 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Gludio Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Human Mercenary -->
 		<production count="1" id="13569" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Gludio Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Elf Mercenary -->
 		<production count="1" id="13570" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Gludio Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Elf Mercenary -->
 		<production count="1" id="13570" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Gludio Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Orc Mercenary -->
 		<production count="1" id="13572" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Gludio Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Dwarf Mercenary -->
 		<production count="1" id="13573" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Gludio Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Kamael Mercenary -->
 		<production count="1" id="13574" />
 	</item>
 	<item>
@@ -47,7 +47,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Gludio Territory Badge -->
 		<ingredient count="5" id="13757" />
-		<!-- Gludio Archer Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Archer Mercenary -->
 		<production count="1" id="13576" />
 	</item>
 	<item>
@@ -55,7 +55,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Gludio Territory Badge -->
 		<ingredient count="5" id="13757" />
-		<!-- Gludio Wizard Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Wizard Mercenary -->
 		<production count="1" id="13577" />
 	</item>
 	<item>
@@ -63,7 +63,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Gludio Territory Badge -->
 		<ingredient count="5" id="13757" />
-		<!-- Gludio Kamael Captain Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Kamael Captain Mercenary -->
 		<production count="1" id="13578" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/364810003.xml b/L2J_DataPack_BETA/dist/game/data/multisell/364810003.xml
index 7ffbab6f2b59ac2088feec66e1008e2991229a45..992d764b5c006fb679fc33af567bafed8319d685 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/364810003.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/364810003.xml
@@ -1,39 +1,39 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Gludio Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Human Mercenary -->
 		<production count="1" id="13569" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Gludio Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Elf Mercenary -->
 		<production count="1" id="13570" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Gludio Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Elf Mercenary -->
 		<production count="1" id="13570" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Gludio Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Orc Mercenary -->
 		<production count="1" id="13572" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Gludio Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Dwarf Mercenary -->
 		<production count="1" id="13573" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Gludio Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Kamael Mercenary -->
 		<production count="1" id="13574" />
 	</item>
 	<item>
@@ -47,7 +47,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Gludio Territory Badge -->
 		<ingredient count="5" id="13757" />
-		<!-- Gludio Archer Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Archer Mercenary -->
 		<production count="1" id="13576" />
 	</item>
 	<item>
@@ -55,7 +55,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Gludio Territory Badge -->
 		<ingredient count="5" id="13757" />
-		<!-- Gludio Wizard Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Wizard Mercenary -->
 		<production count="1" id="13577" />
 	</item>
 	<item>
@@ -63,7 +63,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Gludio Territory Badge -->
 		<ingredient count="5" id="13757" />
-		<!-- Gludio Kamael Captain Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Kamael Captain Mercenary -->
 		<production count="1" id="13578" />
 	</item>
 	<item>
@@ -71,7 +71,7 @@
 		<ingredient count="55600" id="57" />
 		<!-- Gludio Territory Badge -->
 		<ingredient count="10" id="13757" />
-		<!-- Gludio Knight Captain Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Knight Captain Mercenary -->
 		<production count="1" id="13579" />
 	</item>
 	<item>
@@ -79,7 +79,7 @@
 		<ingredient count="55600" id="57" />
 		<!-- Gludio Territory Badge -->
 		<ingredient count="10" id="13757" />
-		<!-- Gludio Commander Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Commander Mercenary -->
 		<production count="1" id="13580" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/364820001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/364820001.xml
index 5acd3824147c6744693b8fb421ccdaa830ec74b1..3a9a4cc61f44c45a5120037d61106e0019c629d7 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/364820001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/364820001.xml
@@ -1,39 +1,39 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Dion Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Human Mercenary -->
 		<production count="1" id="13581" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Dion Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Elf Mercenary -->
 		<production count="1" id="13582" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Dion Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Dark Elf Mercenary -->
 		<production count="1" id="13583" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Dion Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Orc Mercenary -->
 		<production count="1" id="13584" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Dion Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Dwarf Mercenary -->
 		<production count="1" id="13585" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Dion Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Kamael Mercenary -->
 		<production count="1" id="13586" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/364820002.xml b/L2J_DataPack_BETA/dist/game/data/multisell/364820002.xml
index 5aabc5a61955f88f2e1f4a0020a86645d8ef0922..d22ad4ba9aa7394a5e981e5f0df0a7c71f189561 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/364820002.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/364820002.xml
@@ -1,39 +1,39 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Dion Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Human Mercenary -->
 		<production count="1" id="13581" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Dion Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Elf Mercenary -->
 		<production count="1" id="13582" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Dion Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Dark Elf Mercenary -->
 		<production count="1" id="13583" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Dion Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Orc Mercenary -->
 		<production count="1" id="13584" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Dion Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Dwarf Mercenary -->
 		<production count="1" id="13585" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Dion Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Kamael Mercenary -->
 		<production count="1" id="13586" />
 	</item>
 	<item>
@@ -47,7 +47,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Dion Territory Badge -->
 		<ingredient count="5" id="13758" />
-		<!-- Dion Archer Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Archer Mercenary -->
 		<production count="1" id="13588" />
 	</item>
 	<item>
@@ -55,7 +55,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Dion Territory Badge -->
 		<ingredient count="5" id="13758" />
-		<!-- Dion Wizard Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Wizard Mercenary -->
 		<production count="1" id="13589" />
 	</item>
 	<item>
@@ -63,7 +63,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Dion Territory Badge -->
 		<ingredient count="5" id="13758" />
-		<!-- Dion Kamael Captain Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Kamael Captain Mercenary -->
 		<production count="1" id="13590" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/364820003.xml b/L2J_DataPack_BETA/dist/game/data/multisell/364820003.xml
index 3c0b84bddcf0becf1db10521d42db3cd5eb1166d..dc272f7a85e2db526eab4ee5bd3b31c677910bc9 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/364820003.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/364820003.xml
@@ -1,39 +1,39 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Dion Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Human Mercenary -->
 		<production count="1" id="13581" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Dion Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Elf Mercenary -->
 		<production count="1" id="13582" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Dion Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Dark Elf Mercenary -->
 		<production count="1" id="13583" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Dion Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Orc Mercenary -->
 		<production count="1" id="13584" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Dion Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Dwarf Mercenary -->
 		<production count="1" id="13585" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Dion Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Kamael Mercenary -->
 		<production count="1" id="13586" />
 	</item>
 	<item>
@@ -47,7 +47,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Dion Territory Badge -->
 		<ingredient count="5" id="13758" />
-		<!-- Dion Archer Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Archer Mercenary -->
 		<production count="1" id="13588" />
 	</item>
 	<item>
@@ -55,7 +55,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Dion Territory Badge -->
 		<ingredient count="5" id="13758" />
-		<!-- Dion Wizard Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Wizard Mercenary -->
 		<production count="1" id="13589" />
 	</item>
 	<item>
@@ -63,7 +63,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Dion Territory Badge -->
 		<ingredient count="5" id="13758" />
-		<!-- Dion Kamael Captain Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Kamael Captain Mercenary -->
 		<production count="1" id="13590" />
 	</item>
 	<item>
@@ -71,7 +71,7 @@
 		<ingredient count="55600" id="57" />
 		<!-- Dion Territory Badge -->
 		<ingredient count="10" id="13758" />
-		<!-- Dion Knight Captain Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Knight Captain Mercenary -->
 		<production count="1" id="13591" />
 	</item>
 	<item>
@@ -79,7 +79,7 @@
 		<ingredient count="55600" id="57" />
 		<!-- Dion Territory Badge -->
 		<ingredient count="10" id="13758" />
-		<!-- Dion Commander Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Commander Mercenary -->
 		<production count="1" id="13592" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/364830001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/364830001.xml
index 8f98e4983db66a7e997b98cfc98b8342aff21f36..ddb46501ea17ecb9b3f93c28de12e3f4071a6663 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/364830001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/364830001.xml
@@ -1,39 +1,39 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Giran Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Human Mercenary -->
 		<production count="1" id="13593" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Giran Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Elf Mercenary -->
 		<production count="1" id="13594" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Giran Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Dark Elf Mercenary -->
 		<production count="1" id="13595" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Giran Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Orc Mercenary -->
 		<production count="1" id="13596" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Giran Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Dwarf Mercenary -->
 		<production count="1" id="13597" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Giran Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Kamael Mercenary -->
 		<production count="1" id="13598" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/364830002.xml b/L2J_DataPack_BETA/dist/game/data/multisell/364830002.xml
index 9994565fe87e725594617ca96991454af589ef0f..5a3366a18821efaae08e0f27c3b82b812b317568 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/364830002.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/364830002.xml
@@ -1,39 +1,39 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Giran Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Human Mercenary -->
 		<production count="1" id="13593" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Giran Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Elf Mercenary -->
 		<production count="1" id="13594" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Giran Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Dark Elf Mercenary -->
 		<production count="1" id="13595" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Giran Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Orc Mercenary -->
 		<production count="1" id="13596" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Giran Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Dwarf Mercenary -->
 		<production count="1" id="13597" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Giran Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Kamael Mercenary -->
 		<production count="1" id="13598" />
 	</item>
 	<item>
@@ -47,7 +47,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Giran Territory Badge -->
 		<ingredient count="5" id="13759" />
-		<!-- Giran Archer Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Archer Mercenary -->
 		<production count="1" id="13600" />
 	</item>
 	<item>
@@ -55,7 +55,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Giran Territory Badge -->
 		<ingredient count="5" id="13759" />
-		<!-- Giran Wizard Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Wizard Mercenary -->
 		<production count="1" id="13601" />
 	</item>
 	<item>
@@ -63,7 +63,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Giran Territory Badge -->
 		<ingredient count="5" id="13759" />
-		<!-- Giran Kamael Captain Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Kamael Captain Mercenary -->
 		<production count="1" id="13602" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/364830003.xml b/L2J_DataPack_BETA/dist/game/data/multisell/364830003.xml
index 774b89491d43d7abfa2f542df4d2c105538641aa..1edf3a3cfd1e7e75e59614724c609d195aaaf190 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/364830003.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/364830003.xml
@@ -1,39 +1,39 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Giran Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Human Mercenary -->
 		<production count="1" id="13593" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Giran Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Elf Mercenary -->
 		<production count="1" id="13594" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Giran Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Dark Elf Mercenary -->
 		<production count="1" id="13595" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Giran Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Orc Mercenary -->
 		<production count="1" id="13596" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Giran Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Dwarf Mercenary -->
 		<production count="1" id="13597" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Giran Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Kamael Mercenary -->
 		<production count="1" id="13598" />
 	</item>
 	<item>
@@ -47,7 +47,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Giran Territory Badge -->
 		<ingredient count="5" id="13759" />
-		<!-- Giran Archer Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Archer Mercenary -->
 		<production count="1" id="13600" />
 	</item>
 	<item>
@@ -55,7 +55,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Giran Territory Badge -->
 		<ingredient count="5" id="13759" />
-		<!-- Giran Wizard Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Wizard Mercenary -->
 		<production count="1" id="13601" />
 	</item>
 	<item>
@@ -63,7 +63,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Giran Territory Badge -->
 		<ingredient count="5" id="13759" />
-		<!-- Giran Kamael Captain Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Kamael Captain Mercenary -->
 		<production count="1" id="13602" />
 	</item>
 	<item>
@@ -71,7 +71,7 @@
 		<ingredient count="55600" id="57" />
 		<!-- Giran Territory Badge -->
 		<ingredient count="10" id="13759" />
-		<!-- Giran Knight Captain Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Knight Captain Mercenary -->
 		<production count="1" id="13603" />
 	</item>
 	<item>
@@ -79,7 +79,7 @@
 		<ingredient count="55600" id="57" />
 		<!-- Giran Territory Badge -->
 		<ingredient count="10" id="13759" />
-		<!-- Giran Commander Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Commander Mercenary -->
 		<production count="1" id="13604" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/364840001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/364840001.xml
index 76e549f7ddedd36567b3adf837b6d94549f16d7a..eb1e070918db931edff67dbd386637710855399c 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/364840001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/364840001.xml
@@ -1,39 +1,39 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Oren Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Human Mercenary -->
 		<production count="1" id="13605" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Oren Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Elf Mercenary -->
 		<production count="1" id="13606" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Oren Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Dark Elf Mercenary -->
 		<production count="1" id="13607" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Oren Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Orc Mercenary -->
 		<production count="1" id="13608" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Oren Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Dwarf Mercenary -->
 		<production count="1" id="13609" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Oren Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Kamael Mercenary -->
 		<production count="1" id="13610" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/364840002.xml b/L2J_DataPack_BETA/dist/game/data/multisell/364840002.xml
index a6eaab2d93736c4018740719aa90ad3b05c62dbd..9e89ba59bb75899979b3001811c9265fa851ba73 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/364840002.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/364840002.xml
@@ -1,39 +1,39 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Oren Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Human Mercenary -->
 		<production count="1" id="13605" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Oren Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Elf Mercenary -->
 		<production count="1" id="13606" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Oren Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Dark Elf Mercenary -->
 		<production count="1" id="13607" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Oren Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Orc Mercenary -->
 		<production count="1" id="13608" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Oren Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Dwarf Mercenary -->
 		<production count="1" id="13609" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Oren Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Kamael Mercenary -->
 		<production count="1" id="13610" />
 	</item>
 	<item>
@@ -47,7 +47,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Oren Territory Badge -->
 		<ingredient count="5" id="13760" />
-		<!-- Oren Archer Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Archer Mercenary -->
 		<production count="1" id="13612" />
 	</item>
 	<item>
@@ -55,7 +55,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Oren Territory Badge -->
 		<ingredient count="5" id="13760" />
-		<!-- Oren Wizard Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Wizard Mercenary -->
 		<production count="1" id="13613" />
 	</item>
 	<item>
@@ -63,7 +63,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Oren Territory Badge -->
 		<ingredient count="5" id="13760" />
-		<!-- Oren Kamael Captain Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Kamael Captain Mercenary -->
 		<production count="1" id="13614" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/364840003.xml b/L2J_DataPack_BETA/dist/game/data/multisell/364840003.xml
index 3fecfa973530e47c3c3f92bbe16f324d76bc48a0..253ed65b2df65123ab41b46a6295d6443d2ec44a 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/364840003.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/364840003.xml
@@ -1,39 +1,39 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Oren Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Human Mercenary -->
 		<production count="1" id="13605" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Oren Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Elf Mercenary -->
 		<production count="1" id="13606" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Oren Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Dark Elf Mercenary -->
 		<production count="1" id="13607" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Oren Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Orc Mercenary -->
 		<production count="1" id="13608" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Oren Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Dwarf Mercenary -->
 		<production count="1" id="13609" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Oren Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Kamael Mercenary -->
 		<production count="1" id="13610" />
 	</item>
 	<item>
@@ -47,7 +47,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Oren Territory Badge -->
 		<ingredient count="5" id="13760" />
-		<!-- Oren Archer Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Archer Mercenary -->
 		<production count="1" id="13612" />
 	</item>
 	<item>
@@ -55,7 +55,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Oren Territory Badge -->
 		<ingredient count="5" id="13760" />
-		<!-- Oren Wizard Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Wizard Mercenary -->
 		<production count="1" id="13613" />
 	</item>
 	<item>
@@ -63,7 +63,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Oren Territory Badge -->
 		<ingredient count="5" id="13760" />
-		<!-- Oren Kamael Captain Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Kamael Captain Mercenary -->
 		<production count="1" id="13614" />
 	</item>
 	<item>
@@ -71,7 +71,7 @@
 		<ingredient count="55600" id="57" />
 		<!-- Oren Territory Badge -->
 		<ingredient count="10" id="13760" />
-		<!-- Oren Knight Captain Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Knight Captain Mercenary -->
 		<production count="1" id="13615" />
 	</item>
 	<item>
@@ -79,7 +79,7 @@
 		<ingredient count="55600" id="57" />
 		<!-- Oren Territory Badge -->
 		<ingredient count="10" id="13760" />
-		<!-- Oren Commander Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Commander Mercenary -->
 		<production count="1" id="13616" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/364850001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/364850001.xml
index d298015927a2f4cf33abc5c043bdb07a4a9d6010..e6160bf0e6a7f4a2e91450613689fc3b733c720a 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/364850001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/364850001.xml
@@ -1,39 +1,39 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Aden Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Human Mercenary -->
 		<production count="1" id="13617" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Aden Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Elf Mercenary -->
 		<production count="1" id="13618" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Aden Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Dark Elf Mercenary -->
 		<production count="1" id="13619" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Aden Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Orc Mercenary -->
 		<production count="1" id="13620" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Aden Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Dwarf Mercenary -->
 		<production count="1" id="13621" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Aden Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Kamael Mercenary -->
 		<production count="1" id="13622" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/364850002.xml b/L2J_DataPack_BETA/dist/game/data/multisell/364850002.xml
index 4d62f60db3a63aa4aa0524d6b0ccd2e627ebbf2c..737a49618bb9fdd1faec550dcb7fd10044c39429 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/364850002.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/364850002.xml
@@ -1,39 +1,39 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Aden Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Human Mercenary -->
 		<production count="1" id="13617" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Aden Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Elf Mercenary -->
 		<production count="1" id="13618" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Aden Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Dark Elf Mercenary -->
 		<production count="1" id="13619" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Aden Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Orc Mercenary -->
 		<production count="1" id="13620" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Aden Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Dwarf Mercenary -->
 		<production count="1" id="13621" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Aden Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Kamael Mercenary -->
 		<production count="1" id="13622" />
 	</item>
 	<item>
@@ -47,7 +47,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Aden Territory Badge -->
 		<ingredient count="5" id="13761" />
-		<!-- Aden Archer Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Archer Mercenary -->
 		<production count="1" id="13624" />
 	</item>
 	<item>
@@ -55,7 +55,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Aden Territory Badge -->
 		<ingredient count="5" id="13761" />
-		<!-- Aden Wizard Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Wizard Mercenary -->
 		<production count="1" id="13625" />
 	</item>
 	<item>
@@ -63,7 +63,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Aden Territory Badge -->
 		<ingredient count="5" id="13761" />
-		<!-- Aden Kamael Captain Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Kamael Captain Mercenary -->
 		<production count="1" id="13626" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/364850003.xml b/L2J_DataPack_BETA/dist/game/data/multisell/364850003.xml
index 880277935db5074294dea1c9ca86e452066548cf..7ffbd13da71b088747739fa87969fcbb1a8d84ee 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/364850003.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/364850003.xml
@@ -1,39 +1,39 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Aden Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Human Mercenary -->
 		<production count="1" id="13617" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Aden Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Elf Mercenary -->
 		<production count="1" id="13618" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Aden Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Dark Elf Mercenary -->
 		<production count="1" id="13619" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Aden Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Orc Mercenary -->
 		<production count="1" id="13620" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Aden Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Dwarf Mercenary -->
 		<production count="1" id="13621" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Aden Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Kamael Mercenary -->
 		<production count="1" id="13622" />
 	</item>
 	<item>
@@ -47,7 +47,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Aden Territory Badge -->
 		<ingredient count="5" id="13761" />
-		<!-- Aden Archer Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Archer Mercenary -->
 		<production count="1" id="13624" />
 	</item>
 	<item>
@@ -55,7 +55,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Aden Territory Badge -->
 		<ingredient count="5" id="13761" />
-		<!-- Aden Wizard Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Wizard Mercenary -->
 		<production count="1" id="13625" />
 	</item>
 	<item>
@@ -63,7 +63,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Aden Territory Badge -->
 		<ingredient count="5" id="13761" />
-		<!-- Aden Kamael Captain Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Kamael Captain Mercenary -->
 		<production count="1" id="13626" />
 	</item>
 	<item>
@@ -71,7 +71,7 @@
 		<ingredient count="55600" id="57" />
 		<!-- Aden Territory Badge -->
 		<ingredient count="10" id="13761" />
-		<!-- Aden Knight Captain Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Knight Captain Mercenary -->
 		<production count="1" id="13627" />
 	</item>
 	<item>
@@ -79,7 +79,7 @@
 		<ingredient count="55600" id="57" />
 		<!-- Aden Territory Badge -->
 		<ingredient count="10" id="13761" />
-		<!-- Aden Commander Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Commander Mercenary -->
 		<production count="1" id="13628" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/364860001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/364860001.xml
index ad2a80b7662feb4a8545d8b8bc195afcb3128542..67ba5d18d87bae395c8e37804fbac470227faca7 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/364860001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/364860001.xml
@@ -1,39 +1,39 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Innadril Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Human Mercenary -->
 		<production count="1" id="13629" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Innadril Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Elf Mercenary -->
 		<production count="1" id="13630" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Innadril Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Dark Elf Mercenary -->
 		<production count="1" id="13631" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Innadril Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Orc Mercenary -->
 		<production count="1" id="13632" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Innadril Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Dwarf Mercenary -->
 		<production count="1" id="13633" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Innadril Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Kamael Mercenary -->
 		<production count="1" id="13634" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/364860002.xml b/L2J_DataPack_BETA/dist/game/data/multisell/364860002.xml
index 721c79e94ad214171b9f80abaa47a00788640160..1bba7961c46e3e5d6aae053063739e3465f65147 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/364860002.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/364860002.xml
@@ -1,39 +1,39 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Innadril Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Human Mercenary -->
 		<production count="1" id="13629" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Innadril Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Elf Mercenary -->
 		<production count="1" id="13630" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Innadril Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Dark Elf Mercenary -->
 		<production count="1" id="13631" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Innadril Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Orc Mercenary -->
 		<production count="1" id="13632" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Innadril Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Dwarf Mercenary -->
 		<production count="1" id="13633" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Innadril Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Kamael Mercenary -->
 		<production count="1" id="13634" />
 	</item>
 	<item>
@@ -47,7 +47,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Innadril Territory Badge -->
 		<ingredient count="5" id="13762" />
-		<!-- Innadril Archer Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Archer Mercenary -->
 		<production count="1" id="13636" />
 	</item>
 	<item>
@@ -55,7 +55,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Innadril Territory Badge -->
 		<ingredient count="5" id="13762" />
-		<!-- Innadril Wizard Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Wizard Mercenary -->
 		<production count="1" id="13637" />
 	</item>
 	<item>
@@ -63,7 +63,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Innadril Territory Badge -->
 		<ingredient count="5" id="13762" />
-		<!-- Innadril Kamael Captain Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Kamael Captain Mercenary -->
 		<production count="1" id="13638" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/364860003.xml b/L2J_DataPack_BETA/dist/game/data/multisell/364860003.xml
index 86d9a26b6680dd37bf9ad61caa4de7828451b605..5de9acba1d1cc602e921c762c7536a3e377601cc 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/364860003.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/364860003.xml
@@ -1,39 +1,39 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Innadril Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Human Mercenary -->
 		<production count="1" id="13629" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Innadril Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Elf Mercenary -->
 		<production count="1" id="13630" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Innadril Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Dark Elf Mercenary -->
 		<production count="1" id="13631" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Innadril Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Orc Mercenary -->
 		<production count="1" id="13632" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Innadril Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Dwarf Mercenary -->
 		<production count="1" id="13633" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Innadril Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Kamael Mercenary -->
 		<production count="1" id="13634" />
 	</item>
 	<item>
@@ -47,7 +47,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Innadril Territory Badge -->
 		<ingredient count="5" id="13762" />
-		<!-- Innadril Archer Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Archer Mercenary -->
 		<production count="1" id="13636" />
 	</item>
 	<item>
@@ -55,7 +55,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Innadril Territory Badge -->
 		<ingredient count="5" id="13762" />
-		<!-- Innadril Wizard Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Wizard Mercenary -->
 		<production count="1" id="13637" />
 	</item>
 	<item>
@@ -63,7 +63,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Innadril Territory Badge -->
 		<ingredient count="5" id="13762" />
-		<!-- Innadril Kamael Captain Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Kamael Captain Mercenary -->
 		<production count="1" id="13638" />
 	</item>
 	<item>
@@ -71,7 +71,7 @@
 		<ingredient count="55600" id="57" />
 		<!-- Innadril Territory Badge -->
 		<ingredient count="10" id="13762" />
-		<!-- Innadril Knight Captain Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Knight Captain Mercenary -->
 		<production count="1" id="13639" />
 	</item>
 	<item>
@@ -79,7 +79,7 @@
 		<ingredient count="55600" id="57" />
 		<!-- Innadril Territory Badge -->
 		<ingredient count="10" id="13762" />
-		<!-- Innadril Commander Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Commander Mercenary -->
 		<production count="1" id="13640" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/364870001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/364870001.xml
index d64fc503c7ed0678867a0715ca0f3b28393b5e2b..434bdd2e2e17cb7836dac11e8644ac1583b7152b 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/364870001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/364870001.xml
@@ -1,39 +1,39 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Goddard Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Human Mercenary -->
 		<production count="1" id="13641" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Goddard Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Elf Mercenary -->
 		<production count="1" id="13642" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Goddard Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Dark Elf Mercenary -->
 		<production count="1" id="13643" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Goddard Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Orc Mercenary -->
 		<production count="1" id="13644" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Goddard Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Dwarf Mercenary -->
 		<production count="1" id="13645" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Goddard Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Kamael Mercenary -->
 		<production count="1" id="13646" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/364870002.xml b/L2J_DataPack_BETA/dist/game/data/multisell/364870002.xml
index a25e318447e1c26d5038de5a756a1185ae372614..e4cfb090485caa76b25e38e59db258cd172eb378 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/364870002.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/364870002.xml
@@ -1,39 +1,39 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Goddard Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Human Mercenary -->
 		<production count="1" id="13641" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Goddard Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Elf Mercenary -->
 		<production count="1" id="13642" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Goddard Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Dark Elf Mercenary -->
 		<production count="1" id="13643" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Goddard Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Orc Mercenary -->
 		<production count="1" id="13644" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Goddard Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Dwarf Mercenary -->
 		<production count="1" id="13645" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Goddard Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Kamael Mercenary -->
 		<production count="1" id="13646" />
 	</item>
 	<item>
@@ -47,7 +47,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Goddard Territory Badge -->
 		<ingredient count="5" id="13763" />
-		<!-- Goddard Archer Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Archer Mercenary -->
 		<production count="1" id="13648" />
 	</item>
 	<item>
@@ -55,7 +55,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Goddard Territory Badge -->
 		<ingredient count="5" id="13763" />
-		<!-- Goddard Wizard Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Wizard Mercenary -->
 		<production count="1" id="13649" />
 	</item>
 	<item>
@@ -63,7 +63,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Goddard Territory Badge -->
 		<ingredient count="5" id="13763" />
-		<!-- Goddard Kamael Captain Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Kamael Captain Mercenary -->
 		<production count="1" id="13650" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/364870003.xml b/L2J_DataPack_BETA/dist/game/data/multisell/364870003.xml
index 1d69cffa7ee54204eed1e3101c26995165d33722..555244d14c3e6fad9eacfc67ccfaf861055b54c9 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/364870003.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/364870003.xml
@@ -1,39 +1,39 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Goddard Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Human Mercenary -->
 		<production count="1" id="13641" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Goddard Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Elf Mercenary -->
 		<production count="1" id="13642" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Goddard Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Dark Elf Mercenary -->
 		<production count="1" id="13643" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Goddard Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Orc Mercenary -->
 		<production count="1" id="13644" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Goddard Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Dwarf Mercenary -->
 		<production count="1" id="13645" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Goddard Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Kamael Mercenary -->
 		<production count="1" id="13646" />
 	</item>
 	<item>
@@ -47,7 +47,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Goddard Territory Badge -->
 		<ingredient count="5" id="13763" />
-		<!-- Goddard Archer Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Archer Mercenary -->
 		<production count="1" id="13648" />
 	</item>
 	<item>
@@ -55,7 +55,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Goddard Territory Badge -->
 		<ingredient count="5" id="13763" />
-		<!-- Goddard Wizard Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Wizard Mercenary -->
 		<production count="1" id="13649" />
 	</item>
 	<item>
@@ -63,7 +63,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Goddard Territory Badge -->
 		<ingredient count="5" id="13763" />
-		<!-- Goddard Kamael Captain Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Kamael Captain Mercenary -->
 		<production count="1" id="13650" />
 	</item>
 	<item>
@@ -71,7 +71,7 @@
 		<ingredient count="55600" id="57" />
 		<!-- Goddard Territory Badge -->
 		<ingredient count="10" id="13763" />
-		<!-- Goddard Knight Captain Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Knight Captain Mercenary -->
 		<production count="1" id="13651" />
 	</item>
 	<item>
@@ -79,7 +79,7 @@
 		<ingredient count="55600" id="57" />
 		<!-- Goddard Territory Badge -->
 		<ingredient count="10" id="13763" />
-		<!-- Goddard Commander Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Commander Mercenary -->
 		<production count="1" id="13652" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/364880001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/364880001.xml
index 955e75252ba57c8da3b1091ad8732f624e284581..8df125491b94e52cd7e87e310d77161f0879a218 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/364880001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/364880001.xml
@@ -1,39 +1,39 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Rune Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Human Mercenary -->
 		<production count="1" id="13653" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Rune Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Elf Mercenary -->
 		<production count="1" id="13654" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Rune Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Dark Elf Mercenary -->
 		<production count="1" id="13655" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Rune Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Orc Mercenary -->
 		<production count="1" id="13656" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Rune Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Dwarf Mercenary -->
 		<production count="1" id="13657" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Rune Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Kamael Mercenary -->
 		<production count="1" id="13658" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/364880002.xml b/L2J_DataPack_BETA/dist/game/data/multisell/364880002.xml
index 14f4d0a131a580931b1ad67d56a5d6d76ea3e777..c139e07ebbc0baa1439b89ea62e818e3890e92ff 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/364880002.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/364880002.xml
@@ -1,39 +1,39 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Rune Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Human Mercenary -->
 		<production count="1" id="13653" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Rune Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Elf Mercenary -->
 		<production count="1" id="13654" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Rune Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Dark Elf Mercenary -->
 		<production count="1" id="13655" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Rune Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Orc Mercenary -->
 		<production count="1" id="13656" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Rune Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Dwarf Mercenary -->
 		<production count="1" id="13657" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Rune Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Kamael Mercenary -->
 		<production count="1" id="13658" />
 	</item>
 	<item>
@@ -47,7 +47,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Rune Territory Badge -->
 		<ingredient count="5" id="13764" />
-		<!-- Rune Archer Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Archer Mercenary -->
 		<production count="1" id="13660" />
 	</item>
 	<item>
@@ -55,7 +55,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Rune Territory Badge -->
 		<ingredient count="5" id="13764" />
-		<!-- Rune Wizard Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Wizard Mercenary -->
 		<production count="1" id="13661" />
 	</item>
 	<item>
@@ -63,7 +63,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Rune Territory Badge -->
 		<ingredient count="5" id="13764" />
-		<!-- Rune Kamael Captain Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Kamael Captain Mercenary -->
 		<production count="1" id="13662" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/364880003.xml b/L2J_DataPack_BETA/dist/game/data/multisell/364880003.xml
index 95e8f64752cbcb8f48d4d52a03d2a3661cb20d86..979903a97f16436464cdd839eefd459dfb8c97de 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/364880003.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/364880003.xml
@@ -1,39 +1,39 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Rune Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Human Mercenary -->
 		<production count="1" id="13653" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Rune Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Elf Mercenary -->
 		<production count="1" id="13654" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Rune Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Dark Elf Mercenary -->
 		<production count="1" id="13655" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Rune Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Orc Mercenary -->
 		<production count="1" id="13656" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Rune Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Dwarf Mercenary -->
 		<production count="1" id="13657" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Rune Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Kamael Mercenary -->
 		<production count="1" id="13658" />
 	</item>
 	<item>
@@ -47,7 +47,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Rune Territory Badge -->
 		<ingredient count="5" id="13764" />
-		<!-- Rune Archer Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Archer Mercenary -->
 		<production count="1" id="13660" />
 	</item>
 	<item>
@@ -55,7 +55,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Rune Territory Badge -->
 		<ingredient count="5" id="13764" />
-		<!-- Rune Wizard Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Wizard Mercenary -->
 		<production count="1" id="13661" />
 	</item>
 	<item>
@@ -63,7 +63,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Rune Territory Badge -->
 		<ingredient count="5" id="13764" />
-		<!-- Rune Kamael Captain Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Kamael Captain Mercenary -->
 		<production count="1" id="13662" />
 	</item>
 	<item>
@@ -71,7 +71,7 @@
 		<ingredient count="55600" id="57" />
 		<!-- Rune Territory Badge -->
 		<ingredient count="10" id="13764" />
-		<!-- Rune Knight Captain Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Knight Captain Mercenary -->
 		<production count="1" id="13663" />
 	</item>
 	<item>
@@ -79,7 +79,7 @@
 		<ingredient count="55600" id="57" />
 		<!-- Rune Territory Badge -->
 		<ingredient count="10" id="13764" />
-		<!-- Rune Commander Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Commander Mercenary -->
 		<production count="1" id="13664" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/364890001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/364890001.xml
index c851bcf87395b4069501f3b89552ffe2094380d2..847f7c18d22ecebe9e0b5741d60d1eee4cd6a3be 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/364890001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/364890001.xml
@@ -1,39 +1,39 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Schuttgart Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Human Mercenary -->
 		<production count="1" id="13665" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Schuttgart Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Elf Mercenary -->
 		<production count="1" id="13666" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Schuttgart Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Dark Elf Mercenary -->
 		<production count="1" id="13667" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Schuttgart Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Orc Mercenary -->
 		<production count="1" id="13668" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Schuttgart Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Dwarf Mercenary -->
 		<production count="1" id="13669" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Schuttgart Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Kamael Mercenary -->
 		<production count="1" id="13670" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/364890002.xml b/L2J_DataPack_BETA/dist/game/data/multisell/364890002.xml
index f62edb30969d6f52dd2813a633f0b5701b66e624..e7e73e49e356d4bb5e44d4ccbbec2e0834b62bef 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/364890002.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/364890002.xml
@@ -1,39 +1,39 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Schuttgart Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Human Mercenary -->
 		<production count="1" id="13665" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Schuttgart Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Elf Mercenary -->
 		<production count="1" id="13666" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Schuttgart Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Dark Elf Mercenary -->
 		<production count="1" id="13667" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Schuttgart Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Orc Mercenary -->
 		<production count="1" id="13668" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Schuttgart Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Dwarf Mercenary -->
 		<production count="1" id="13669" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Schuttgart Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Kamael Mercenary -->
 		<production count="1" id="13670" />
 	</item>
 	<item>
@@ -47,7 +47,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Schuttgart Territory Badge -->
 		<ingredient count="5" id="13765" />
-		<!-- Schuttgart Knight Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Knight Mercenary -->
 		<production count="1" id="13671" />
 	</item>
 	<item>
@@ -55,7 +55,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Schuttgart Territory Badge -->
 		<ingredient count="5" id="13765" />
-		<!-- Schuttgart Archer Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Archer Mercenary -->
 		<production count="1" id="13672" />
 	</item>
 	<item>
@@ -63,7 +63,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Schuttgart Territory Badge -->
 		<ingredient count="5" id="13765" />
-		<!-- Schuttgart Wizard Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Wizard Mercenary -->
 		<production count="1" id="13673" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/364890003.xml b/L2J_DataPack_BETA/dist/game/data/multisell/364890003.xml
index 89764492a553376883c75ba9918ba13a06206e51..5732ae753a2fc81c32ce2fb2429fa2a3d6a4c32e 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/364890003.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/364890003.xml
@@ -1,39 +1,39 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Schuttgart Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Human Mercenary -->
 		<production count="1" id="13665" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Schuttgart Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Elf Mercenary -->
 		<production count="1" id="13666" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Schuttgart Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Dark Elf Mercenary -->
 		<production count="1" id="13667" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Schuttgart Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Orc Mercenary -->
 		<production count="1" id="13668" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Schuttgart Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Dwarf Mercenary -->
 		<production count="1" id="13669" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Schuttgart Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Kamael Mercenary -->
 		<production count="1" id="13670" />
 	</item>
 	<item>
@@ -47,7 +47,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Schuttgart Territory Badge -->
 		<ingredient count="5" id="13765" />
-		<!-- Schuttgart Knight Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Knight Mercenary -->
 		<production count="1" id="13671" />
 	</item>
 	<item>
@@ -55,7 +55,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Schuttgart Territory Badge -->
 		<ingredient count="5" id="13765" />
-		<!-- Schuttgart Archer Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Archer Mercenary -->
 		<production count="1" id="13672" />
 	</item>
 	<item>
@@ -63,7 +63,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Schuttgart Territory Badge -->
 		<ingredient count="5" id="13765" />
-		<!-- Schuttgart Wizard Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Wizard Mercenary -->
 		<production count="1" id="13673" />
 	</item>
 	<item>
@@ -71,7 +71,7 @@
 		<ingredient count="55600" id="57" />
 		<!-- Schuttgart Territory Badge -->
 		<ingredient count="10" id="13765" />
-		<!-- Schuttgart Kamael Captain Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Kamael Captain Mercenary -->
 		<production count="1" id="13674" />
 	</item>
 	<item>
@@ -79,7 +79,7 @@
 		<ingredient count="55600" id="57" />
 		<!-- Schuttgart Territory Badge -->
 		<ingredient count="10" id="13765" />
-		<!-- Schuttgart Knight Captain Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Knight Captain Mercenary -->
 		<production count="1" id="13675" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/364900001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/364900001.xml
index e20f5e63f5951bf4745e59f5d0a6556331acd597..e93046696d9401fba8651b37c63884b7e098fafd 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/364900001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/364900001.xml
@@ -1,11 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Gludio Territory Badge -->
 		<ingredient count="40" id="13757" />
 		<!-- Adena -->
 		<ingredient count="250000" id="57" />
-		<!-- Gludio Blessed Scroll of Escape -->
+		<!-- Blessed Scroll of Escape: Gludio -->
 		<production count="1" id="13731" />
 	</item>
 	<item>
@@ -77,7 +77,7 @@
 		<ingredient count="160" id="13757" />
 		<!-- Adena -->
 		<ingredient count="3596400" id="57" />
-		<!-- Gludio Water Protection Necklace -->
+		<!-- Gludio Water Resistance Necklace -->
 		<production count="1" id="13740" />
 	</item>
 	<item>
@@ -85,7 +85,7 @@
 		<ingredient count="80" id="13757" />
 		<!-- Adena -->
 		<ingredient count="1798200" id="57" />
-		<!-- Gludio Earth Protection Ring -->
+		<!-- Gludio Earth Resistance Ring -->
 		<production count="1" id="14592" />
 	</item>
 	<item>
@@ -197,7 +197,7 @@
 		<ingredient count="80" id="13757" />
 		<!-- Adena -->
 		<ingredient count="2100000" id="57" />
-		<!-- Circlet of Gludio Silence -->
+		<!-- Gludio Circlet Silence -->
 		<production count="1" id="13484" />
 	</item>
 	<item>
@@ -221,7 +221,7 @@
 		<ingredient count="71" id="13757" />
 		<!-- Adena -->
 		<ingredient count="534000" id="57" />
-		<!-- Apella Combat Gauntlet - Heavy Armor Use -->
+		<!-- Apella Combat Gauntlet - Heavy Armor -->
 		<production count="1" id="14584" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/364910001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/364910001.xml
index b04924c70a7fc11778ab8989181b16c6df18ff2f..65b7a2914ecb765453d4476e62db37a2e7ceaaf2 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/364910001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/364910001.xml
@@ -1,11 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Dion Territory Badge -->
 		<ingredient count="40" id="13758" />
 		<!-- Adena -->
 		<ingredient count="250000" id="57" />
-		<!-- Dion Blessed Scroll of Escape -->
+		<!-- Blessed Scroll of Escape: Dion -->
 		<production count="1" id="13732" />
 	</item>
 	<item>
@@ -77,7 +77,7 @@
 		<ingredient count="160" id="13758" />
 		<!-- Adena -->
 		<ingredient count="3596400" id="57" />
-		<!-- Dion Divinity Protection Necklace -->
+		<!-- Dion Holy Resistance Necklace -->
 		<production count="1" id="13741" />
 	</item>
 	<item>
@@ -85,7 +85,7 @@
 		<ingredient count="80" id="13758" />
 		<!-- Adena -->
 		<ingredient count="1798200" id="57" />
-		<!-- Dion Water Protection Ring -->
+		<!-- Dion Water Resistance Ring -->
 		<production count="1" id="14593" />
 	</item>
 	<item>
@@ -101,7 +101,7 @@
 		<ingredient count="160" id="13758" />
 		<!-- Adena -->
 		<ingredient count="3596400" id="57" />
-		<!-- Dion Divinity Royal Guard Necklace -->
+		<!-- Dion Holy Royal Guard Necklace -->
 		<production count="1" id="15283" />
 	</item>
 	<item>
@@ -221,7 +221,7 @@
 		<ingredient count="71" id="13758" />
 		<!-- Adena -->
 		<ingredient count="534000" id="57" />
-		<!-- Apella Combat Sandals - Robe Use -->
+		<!-- Apella Combat Sandals - Robe -->
 		<production count="1" id="14591" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/364920001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/364920001.xml
index e88863104c63c9919e9e80cdef56b3d1c3759984..8d051493520d44997fa54c1770fed0f2db8f3b59 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/364920001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/364920001.xml
@@ -1,11 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Giran Territory Badge -->
 		<ingredient count="40" id="13759" />
 		<!-- Adena -->
 		<ingredient count="250000" id="57" />
-		<!-- Giran Blessed Scroll of Escape -->
+		<!-- Blessed Scroll of Escape: Giran -->
 		<production count="1" id="13733" />
 	</item>
 	<item>
@@ -77,7 +77,7 @@
 		<ingredient count="160" id="13759" />
 		<!-- Adena -->
 		<ingredient count="3596400" id="57" />
-		<!-- Giran Wind Protection Necklace -->
+		<!-- Giran Wind Resistance Necklace -->
 		<production count="1" id="13742" />
 	</item>
 	<item>
@@ -85,7 +85,7 @@
 		<ingredient count="80" id="13759" />
 		<!-- Adena -->
 		<ingredient count="1798200" id="57" />
-		<!-- Giran Fire Protection Ring -->
+		<!-- Giran Fire Resistance Ring -->
 		<production count="1" id="14594" />
 	</item>
 	<item>
@@ -205,7 +205,7 @@
 		<ingredient count="71" id="13759" />
 		<!-- Adena -->
 		<ingredient count="534000" id="57" />
-		<!-- Apella Combat Silk Gloves - Robe Use -->
+		<!-- Apella Combat Silk Gloves - Robe -->
 		<production count="1" id="14590" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/364930001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/364930001.xml
index 45989b41f16bcf4b57e27bd3cb4261e84a81a7fb..52da0926a9040596836c68d36ece8e87fe59cdda 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/364930001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/364930001.xml
@@ -1,11 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Oren Territory Badge -->
 		<ingredient count="40" id="13760" />
 		<!-- Adena -->
 		<ingredient count="250000" id="57" />
-		<!-- Oren Blessed Scroll of Escape -->
+		<!-- Blessed Scroll of Escape: Oren -->
 		<production count="1" id="13734" />
 	</item>
 	<item>
@@ -77,7 +77,7 @@
 		<ingredient count="160" id="13760" />
 		<!-- Adena -->
 		<ingredient count="3596400" id="57" />
-		<!-- Oren Darkness Protection Necklace -->
+		<!-- Oren Dark Resistance Necklace -->
 		<production count="1" id="13743" />
 	</item>
 	<item>
@@ -85,7 +85,7 @@
 		<ingredient count="80" id="13760" />
 		<!-- Adena -->
 		<ingredient count="1798200" id="57" />
-		<!-- Oren Earth Protection Ring -->
+		<!-- Oren Earth Resistance Ring -->
 		<production count="1" id="14595" />
 	</item>
 	<item>
@@ -101,7 +101,7 @@
 		<ingredient count="160" id="13760" />
 		<!-- Adena -->
 		<ingredient count="3596400" id="57" />
-		<!-- Oren Darkness Royal Guard Necklace -->
+		<!-- Oren Dark Royal Guard Necklace -->
 		<production count="1" id="15285" />
 	</item>
 	<item>
@@ -213,7 +213,7 @@
 		<ingredient count="71" id="13760" />
 		<!-- Adena -->
 		<ingredient count="534000" id="57" />
-		<!-- Apella Combat Sandals - Robe Use -->
+		<!-- Apella Combat Sandals - Robe -->
 		<production count="1" id="14591" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/364940001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/364940001.xml
index 3488d127b89283055c4548af4a274c979324c95f..fff9d6b1ef8b6004424fe7a74dae37cf73b83951 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/364940001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/364940001.xml
@@ -1,11 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Aden Territory Badge -->
 		<ingredient count="40" id="13761" />
 		<!-- Adena -->
 		<ingredient count="250000" id="57" />
-		<!-- Aden Blessed Scroll of Escape -->
+		<!-- Blessed Scroll of Escape: Aden -->
 		<production count="1" id="13735" />
 	</item>
 	<item>
@@ -77,7 +77,7 @@
 		<ingredient count="160" id="13761" />
 		<!-- Adena -->
 		<ingredient count="3596400" id="57" />
-		<!-- Aden Earth Protection Necklace -->
+		<!-- Aden Earth Resistance Necklace -->
 		<production count="1" id="13744" />
 	</item>
 	<item>
@@ -85,7 +85,7 @@
 		<ingredient count="80" id="13761" />
 		<!-- Adena -->
 		<ingredient count="1798200" id="57" />
-		<!-- Aden Divinity Protection Ring -->
+		<!-- Aden Holy Resistance Ring -->
 		<production count="1" id="14596" />
 	</item>
 	<item>
@@ -109,7 +109,7 @@
 		<ingredient count="80" id="13761" />
 		<!-- Adena -->
 		<ingredient count="1798200" id="57" />
-		<!-- Aden Divinity Royal Guard Ring -->
+		<!-- Aden Holy Royal Guard Ring -->
 		<production count="1" id="15295" />
 	</item>
 	<item>
@@ -213,7 +213,7 @@
 		<ingredient count="71" id="13761" />
 		<!-- Adena -->
 		<ingredient count="534000" id="57" />
-		<!-- Apella Combat Boots - Heavy Armor Use -->
+		<!-- Apella Combat Boots - Heavy Armor -->
 		<production count="1" id="14585" />
 	</item>
 	<item>
@@ -221,7 +221,7 @@
 		<ingredient count="71" id="13761" />
 		<!-- Adena -->
 		<ingredient count="534000" id="57" />
-		<!-- Apella Combat Silk Gloves - Robe Use -->
+		<!-- Apella Combat Silk Gloves - Robe -->
 		<production count="1" id="14590" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/364950001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/364950001.xml
index 56343a6591e53e8be7496093eac05ca6e59657e1..76f996449292b23c03af8df76475ebf3432dcf36 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/364950001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/364950001.xml
@@ -1,11 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Innadril Territory Badge -->
 		<ingredient count="40" id="13762" />
 		<!-- Adena -->
 		<ingredient count="250000" id="57" />
-		<!-- Innadril Blessed Scroll of Escape -->
+		<!-- Blessed Scroll of Escape: Innadril -->
 		<production count="1" id="13736" />
 	</item>
 	<item>
@@ -77,7 +77,7 @@
 		<ingredient count="160" id="13762" />
 		<!-- Adena -->
 		<ingredient count="3596400" id="57" />
-		<!-- Innadril Water Protection Necklace -->
+		<!-- Innadril Water Resistance Necklace -->
 		<production count="1" id="13745" />
 	</item>
 	<item>
@@ -85,7 +85,7 @@
 		<ingredient count="80" id="13762" />
 		<!-- Adena -->
 		<ingredient count="1798200" id="57" />
-		<!-- Innadril Divinity Protection Ring -->
+		<!-- Innadril Holy Resistance Ring -->
 		<production count="1" id="14597" />
 	</item>
 	<item>
@@ -109,7 +109,7 @@
 		<ingredient count="80" id="13762" />
 		<!-- Adena -->
 		<ingredient count="1798200" id="57" />
-		<!-- Innadril Divinity Royal Guard Ring -->
+		<!-- Innadril Holy Royal Guard Ring -->
 		<production count="1" id="15296" />
 	</item>
 	<item>
@@ -221,7 +221,7 @@
 		<ingredient count="71" id="13762" />
 		<!-- Adena -->
 		<ingredient count="534000" id="57" />
-		<!-- Apella Combat Boots - Heavy Armor Use -->
+		<!-- Apella Combat Boots - Heavy Armor -->
 		<production count="1" id="14585" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/364960001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/364960001.xml
index bc0b7393692012f2d5836b1db1c48bc8eb77eec1..0855f4ac31292cc936cf24d4c6466c3ba1e21eb8 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/364960001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/364960001.xml
@@ -1,11 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Goddard Territory Badge -->
 		<ingredient count="40" id="13763" />
 		<!-- Adena -->
 		<ingredient count="250000" id="57" />
-		<!-- Goddard Blessed Scroll of Escape -->
+		<!-- Blessed Scroll of Escape: Goddard -->
 		<production count="1" id="13737" />
 	</item>
 	<item>
@@ -13,7 +13,7 @@
 		<ingredient count="7" id="13763" />
 		<!-- Adena -->
 		<ingredient count="40000" id="57" />
-		<!-- Goddard Supply Box - Belt - Grade B, C -->
+		<!-- Goddard Supply Box: Belt - Grade B, C -->
 		<production count="1" id="13719" />
 	</item>
 	<item>
@@ -21,7 +21,7 @@
 		<ingredient count="4" id="13763" />
 		<!-- Adena -->
 		<ingredient count="20000" id="57" />
-		<!-- Goddard Supply Box - Magic Pouch - Grade B, C -->
+		<!-- Goddard Supply Box: Magic Pouch - Grade B, C -->
 		<production count="1" id="13710" />
 	</item>
 	<item>
@@ -29,7 +29,7 @@
 		<ingredient count="8" id="13763" />
 		<!-- Adena -->
 		<ingredient count="40000" id="57" />
-		<!-- Goddard Supply Box - Magic Pin - Grade B, C -->
+		<!-- Goddard Supply Box: Magic Pin - Grade B, C -->
 		<production count="1" id="13701" />
 	</item>
 	<item>
@@ -37,7 +37,7 @@
 		<ingredient count="70" id="13763" />
 		<!-- Adena -->
 		<ingredient count="400000" id="57" />
-		<!-- Goddard Supply Box - Belt - Grade S, A -->
+		<!-- Goddard Supply Box: Belt - Grade S, A -->
 		<production count="1" id="14555" />
 	</item>
 	<item>
@@ -45,7 +45,7 @@
 		<ingredient count="16" id="13763" />
 		<!-- Adena -->
 		<ingredient count="80000" id="57" />
-		<!-- Goddard Supply Box - Magic Pouch - Grade S, A -->
+		<!-- Goddard Supply Box: Magic Pouch - Grade S, A -->
 		<production count="1" id="14546" />
 	</item>
 	<item>
@@ -53,7 +53,7 @@
 		<ingredient count="32" id="13763" />
 		<!-- Adena -->
 		<ingredient count="120000" id="57" />
-		<!-- Goddard Supply Box - Magic Pin - Grade S, A -->
+		<!-- Goddard Supply Box: Magic Pin - Grade S, A -->
 		<production count="1" id="14537" />
 	</item>
 	<item>
@@ -61,7 +61,7 @@
 		<ingredient count="16" id="13763" />
 		<!-- Adena -->
 		<ingredient count="80000" id="57" />
-		<!-- Goddard Supply Box - Magic Ornament - Grade S, A -->
+		<!-- Goddard Supply Box: Magic Ornament - Grade S, A -->
 		<production count="1" id="14899" />
 	</item>
 	<item>
@@ -69,7 +69,7 @@
 		<ingredient count="32" id="13763" />
 		<!-- Adena -->
 		<ingredient count="120000" id="57" />
-		<!-- Goddard Supply Box - Magic Rune Clip - Grade S, A -->
+		<!-- Goddard Supply Box: Magic Rune Clip - Grade S, A -->
 		<production count="1" id="14890" />
 	</item>
 	<item>
@@ -77,7 +77,7 @@
 		<ingredient count="160" id="13763" />
 		<!-- Adena -->
 		<ingredient count="3596400" id="57" />
-		<!-- Goddard Fire Protection Necklace -->
+		<!-- Goddard Fire Resistance Necklace -->
 		<production count="1" id="13746" />
 	</item>
 	<item>
@@ -85,7 +85,7 @@
 		<ingredient count="80" id="13763" />
 		<!-- Adena -->
 		<ingredient count="1798200" id="57" />
-		<!-- Goddard Dark Protection Ring -->
+		<!-- Goddard Dark Resistance Ring -->
 		<production count="1" id="14598" />
 	</item>
 	<item>
@@ -197,7 +197,7 @@
 		<ingredient count="80" id="13763" />
 		<!-- Adena -->
 		<ingredient count="2100000" id="57" />
-		<!-- Circlet of Goddard Combat -->
+		<!-- Goddard Circlet of Combat -->
 		<production count="1" id="13481" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/364970001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/364970001.xml
index c09cdf201f34b85f1ebc3257257a896292b834ce..1c4f9879f0d9b63ed29331a94ae32e797da09d21 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/364970001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/364970001.xml
@@ -1,11 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Rune Territory Badge -->
 		<ingredient count="40" id="13764" />
 		<!-- Adena -->
 		<ingredient count="250000" id="57" />
-		<!-- Rune Blessed Scroll of Escape -->
+		<!-- Blessed Scroll of Escape: Rune -->
 		<production count="1" id="13738" />
 	</item>
 	<item>
@@ -77,7 +77,7 @@
 		<ingredient count="160" id="13764" />
 		<!-- Adena -->
 		<ingredient count="3596400" id="57" />
-		<!-- Rune Fire Protection Necklace -->
+		<!-- Rune Fire Resistance Necklace -->
 		<production count="1" id="13747" />
 	</item>
 	<item>
@@ -85,7 +85,7 @@
 		<ingredient count="80" id="13764" />
 		<!-- Adena -->
 		<ingredient count="1798200" id="57" />
-		<!-- Rune Wind Protection Ring -->
+		<!-- Rune Wind Resistance Ring -->
 		<production count="1" id="14599" />
 	</item>
 	<item>
@@ -213,7 +213,7 @@
 		<ingredient count="71" id="13764" />
 		<!-- Adena -->
 		<ingredient count="534000" id="57" />
-		<!-- Apella Combat Gauntlet - Heavy Armor Use -->
+		<!-- Apella Combat Gauntlet - Heavy Armor -->
 		<production count="1" id="14584" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/364980001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/364980001.xml
index 5212dd9adffe3db78826373b6c2235c6f327ef98..7d9b3800f7d614cd1b20ebffc617c868d255b5d7 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/364980001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/364980001.xml
@@ -1,11 +1,11 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Schuttgart Territory Badge -->
 		<ingredient count="40" id="13765" />
 		<!-- Adena -->
 		<ingredient count="250000" id="57" />
-		<!-- Schuttgart Blessed Scroll of Escape -->
+		<!-- Blessed Scroll of Escape: Schuttgart -->
 		<production count="1" id="13739" />
 	</item>
 	<item>
@@ -77,7 +77,7 @@
 		<ingredient count="160" id="13765" />
 		<!-- Adena -->
 		<ingredient count="3596400" id="57" />
-		<!-- Schuttgart Wind Protection Necklace -->
+		<!-- Schuttgart Wind Resistance Necklace -->
 		<production count="1" id="13748" />
 	</item>
 	<item>
@@ -85,7 +85,7 @@
 		<ingredient count="80" id="13765" />
 		<!-- Adena -->
 		<ingredient count="1798200" id="57" />
-		<!-- Schuttgart Dark Protection Ring -->
+		<!-- Schuttgart Dark Resistance Ring -->
 		<production count="1" id="14600" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/382.xml b/L2J_DataPack_BETA/dist/game/data/multisell/382.xml
index 917bcfa527712975242835ed86ad1750dcdd52a1..050e635186a7176c58439e248d9fa615ccd02e8a 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/382.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/382.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Kail's Silver Basilisk -->
 		<ingredient count="10" id="5961" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/426.xml b/L2J_DataPack_BETA/dist/game/data/multisell/426.xml
index 8a586dd624fdc7651950b717e6a7d0bb4ceb6bb0..964283ae62fb27adeb8578b73aecfe55d3d4ae35 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/426.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/426.xml
@@ -1,39 +1,39 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Sweet Fluid -->
 		<ingredient count="1" id="7586" />
-		<!-- Fishing Shot: non-grade -->
+		<!-- Fishing Shot (No-Grade) -->
 		<production count="66" id="6535" />
 	</item>
 	<item>
 		<!-- Sweet Fluid -->
 		<ingredient count="1" id="7586" />
-		<!-- Fishing Shot: D-grade -->
+		<!-- Fishing Shot (D-Grade) -->
 		<production count="40" id="6536" />
 	</item>
 	<item>
 		<!-- Sweet Fluid -->
 		<ingredient count="1" id="7586" />
-		<!-- Fishing Shot: C-grade -->
+		<!-- Fishing Shot (C-Grade) -->
 		<production count="28" id="6537" />
 	</item>
 	<item>
 		<!-- Sweet Fluid -->
 		<ingredient count="1" id="7586" />
-		<!-- Fishing Shot: B-grade -->
+		<!-- Fishing Shot (B-Grade) -->
 		<production count="8" id="6538" />
 	</item>
 	<item>
 		<!-- Sweet Fluid -->
 		<ingredient count="1" id="7586" />
-		<!-- Fishing Shot: A-grade -->
+		<!-- Fishing Shot (A-Grade) -->
 		<production count="5" id="6539" />
 	</item>
 	<item>
 		<!-- Sweet Fluid -->
 		<ingredient count="1" id="7586" />
-		<!-- Fishing Shot: S-grade -->
+		<!-- Fishing Shot (S-Grade) -->
 		<production count="4" id="6540" />
 	</item>
 </list>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/500.xml b/L2J_DataPack_BETA/dist/game/data/multisell/500.xml
index ea9de9ed5b30a44d12b674ecd1e5d3f3dd64f8ea..71a9705de67e576eb5abc37b9241193e5118f0b3 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/500.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/500.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list applyTaxes="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list applyTaxes="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Ancient Adena -->
 		<ingredient count="1080" id="5575" />
@@ -51,49 +51,49 @@
 	<item>
 		<!-- Ancient Adena -->
 		<ingredient count="396" id="5575" />
-		<!-- Lucky Charm: D-Grade -->
+		<!-- Lucky Charm (D-Grade) -->
 		<production count="1" id="5803" />
 	</item>
 	<item>
 		<!-- Ancient Adena -->
 		<ingredient count="792" id="5575" />
-		<!-- Lucky Charm: C-Grade -->
+		<!-- Lucky Charm (C-Grade) -->
 		<production count="1" id="5804" />
 	</item>
 	<item>
 		<!-- Ancient Adena -->
 		<ingredient count="1560" id="5575" />
-		<!-- Lucky Charm: B-Grade -->
+		<!-- Lucky Charm (B-Grade) -->
 		<production count="1" id="5805" />
 	</item>
 	<item>
 		<!-- Ancient Adena -->
 		<ingredient count="3240" id="5575" />
-		<!-- Lucky Charm: A-Grade -->
+		<!-- Lucky Charm (A-Grade) -->
 		<production count="1" id="5806" />
 	</item>
 	<item>
 		<!-- Ancient Adena -->
 		<ingredient count="6000" id="5575" />
-		<!-- Lucky Charm: S Grade -->
+		<!-- Lucky Charm (S-Grade) -->
 		<production count="1" id="5807" />
 	</item>
 	<item>
 		<!-- Ancient Adena -->
 		<ingredient count="2400" id="5575" />
-		<!-- SP Scroll: Low Grade -->
+		<!-- SP Scroll (Low-Grade) -->
 		<production count="1" id="5593" />
 	</item>
 	<item>
 		<!-- Ancient Adena -->
 		<ingredient count="24000" id="5575" />
-		<!-- SP Scroll: Medium Grade -->
+		<!-- SP Scroll (Medium-Grade) -->
 		<production count="1" id="5594" />
 	</item>
 	<item>
 		<!-- Ancient Adena -->
 		<ingredient count="480000" id="5575" />
-		<!-- SP Scroll: High Grade -->
+		<!-- SP Scroll (High Grade) -->
 		<production count="1" id="5595" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/620.xml b/L2J_DataPack_BETA/dist/game/data/multisell/620.xml
index cf793b197ef717acf2d24679e8ee63f38ee87c36..3179587f7c4cabe02981f8d951036c07534ffa7c 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/620.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/620.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="7029" id="57" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/6281.xml b/L2J_DataPack_BETA/dist/game/data/multisell/6281.xml
index cc6fd23c3de530e7e107dd61d1dd05daa994d30d..7228fc726dc93bd1dcf75f846b7d238b66a66d8e 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/6281.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/6281.xml
@@ -1,9 +1,9 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Golden Ram Coin -->
 		<ingredient count="1" id="7251" />
-		<!-- Loot - Gray Pouch -->
+		<!-- Booty - Gray Pouch -->
 		<production count="1" id="7725" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/6282.xml b/L2J_DataPack_BETA/dist/game/data/multisell/6282.xml
index 66614f563534dbdd3a73b6f9bfeb4f6b61208f8d..198a6d8961144093025742367dece903fb6010bb 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/6282.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/6282.xml
@@ -1,9 +1,9 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Golden Ram Coin -->
 		<ingredient count="1" id="7251" />
-		<!-- Loot - Gray Pouch -->
+		<!-- Booty - Gray Pouch -->
 		<production count="1" id="7725" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/631.xml b/L2J_DataPack_BETA/dist/game/data/multisell/631.xml
index c84e482f7dfa093d8df6b045e81cb08a57d2c42c..68b38b9ee051f6f646c2573cb842ddd795af1dd0 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/631.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/631.xml
@@ -1,19 +1,19 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="75000" id="57" />
-		<!-- Fine Blue Cubic Piece -->
+		<!-- Cube Fragment Weapon - D -->
 		<ingredient count="1" id="10642" />
-		<!-- Scroll: Enchant Weapon (D) -->
+		<!-- Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="955" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="9000" id="57" />
-		<!-- Rough Blue Cubic Piece -->
+		<!-- Cube Fragment Armor - D -->
 		<ingredient count="1" id="10633" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
@@ -21,7 +21,7 @@
 		<ingredient count="1350000" id="57" />
 		<!-- Shiny Cube Fragment Weapon - D -->
 		<ingredient count="1" id="21101" />
-		<!-- Blessed Scroll: Enchant Weapon (D) -->
+		<!-- Blessed Scroll: Enchant Weapon (D-Grade) -->
 		<production count="1" id="6575" />
 	</item>
 	<item>
@@ -29,23 +29,23 @@
 		<ingredient count="150000" id="57" />
 		<!-- Shiny Cube Fragment Armor - D -->
 		<ingredient count="1" id="21096" />
-		<!-- Blessed Scroll: Enchant Armor (D) -->
+		<!-- Blessed Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="6576" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="165000" id="57" />
-		<!-- Fine Yellow Cubic Piece -->
+		<!-- Cube Fragment Weapon - C -->
 		<ingredient count="1" id="10643" />
-		<!-- Scroll: Enchant Weapon (C) -->
+		<!-- Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="951" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="22500" id="57" />
-		<!-- Rough Yellow Cubic Piece -->
+		<!-- Cube Fragment Armor - C -->
 		<ingredient count="1" id="10634" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
@@ -53,7 +53,7 @@
 		<ingredient count="4500000" id="57" />
 		<!-- Shiny Cube Fragment Weapon - C -->
 		<ingredient count="1" id="21102" />
-		<!-- Blessed Scroll: Enchant Weapon (C) -->
+		<!-- Blessed Scroll: Enchant Weapon (C-Grade) -->
 		<production count="1" id="6573" />
 	</item>
 	<item>
@@ -61,23 +61,23 @@
 		<ingredient count="525000" id="57" />
 		<!-- Shiny Cube Fragment Armor - C -->
 		<ingredient count="1" id="21097" />
-		<!-- Blessed Scroll: Enchant Armor (C) -->
+		<!-- Blessed Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="6574" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="750000" id="57" />
-		<!-- Fine Green Cubic Piece -->
+		<!-- Cube Fragment Weapon - B -->
 		<ingredient count="1" id="10644" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="120000" id="57" />
-		<!-- Rough Green Cubic Piece -->
+		<!-- Cube Fragment Armor - B -->
 		<ingredient count="1" id="10635" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 	<item>
@@ -85,7 +85,7 @@
 		<ingredient count="10500000" id="57" />
 		<!-- Shiny Cube Fragment Weapon - B -->
 		<ingredient count="1" id="21103" />
-		<!-- Blessed Scroll: Enchant Weapon (B) -->
+		<!-- Blessed Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="6571" />
 	</item>
 	<item>
@@ -93,23 +93,23 @@
 		<ingredient count="1125000" id="57" />
 		<!-- Shiny Cube Fragment Armor - B -->
 		<ingredient count="1" id="21098" />
-		<!-- Blessed Scroll: Enchant Armor (B) -->
+		<!-- Blessed Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="6572" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="2700000" id="57" />
-		<!-- Fine Red Cubic Piece -->
+		<!-- Cube Fragment Weapon - A -->
 		<ingredient count="1" id="10645" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="360000" id="57" />
-		<!-- Rough Red Cubic Piece -->
+		<!-- Cube Fragment Armor - A -->
 		<ingredient count="1" id="10636" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
@@ -117,7 +117,7 @@
 		<ingredient count="22500000" id="57" />
 		<!-- Shiny Cube Fragment Weapon - A -->
 		<ingredient count="1" id="21104" />
-		<!-- Blessed Scroll: Enchant Weapon (A) -->
+		<!-- Blessed Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="6569" />
 	</item>
 	<item>
@@ -125,23 +125,23 @@
 		<ingredient count="2700000" id="57" />
 		<!-- Shiny Cube Fragment Armor - A -->
 		<ingredient count="1" id="21099" />
-		<!-- Blessed Scroll: Enchant Armor (A) -->
+		<!-- Blessed Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="6570" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="7500000" id="57" />
-		<!-- Fine White Cubic Piece -->
+		<!-- Cube Fragment Weapon - S -->
 		<ingredient count="1" id="10646" />
-		<!-- Scroll: Enchant Weapon (S) -->
+		<!-- Scroll: Enchant Weapon (S-Grade) -->
 		<production count="1" id="959" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="750000" id="57" />
-		<!-- Rough White Cubic Piece -->
+		<!-- Cube Fragment Armor - S -->
 		<ingredient count="1" id="10637" />
-		<!-- Scroll: Enchant Armor (S) -->
+		<!-- Scroll: Enchant Armor (S-Grade) -->
 		<production count="1" id="960" />
 	</item>
 	<item>
@@ -149,7 +149,7 @@
 		<ingredient count="45000000" id="57" />
 		<!-- Shiny Cube Fragment Weapon - S -->
 		<ingredient count="1" id="21105" />
-		<!-- Blessed Scroll: Enchant Weapon (S) -->
+		<!-- Blessed Scroll: Enchant Weapon (S-Grade) -->
 		<production count="1" id="6577" />
 	</item>
 	<item>
@@ -157,7 +157,7 @@
 		<ingredient count="6750000" id="57" />
 		<!-- Shiny Cube Fragment Armor - S -->
 		<ingredient count="1" id="21100" />
-		<!-- Blessed Scroll: Enchant Armor (S) -->
+		<!-- Blessed Scroll: Enchant Armor (S-Grade) -->
 		<production count="1" id="6578" />
 	</item>
 	<item>
@@ -285,7 +285,7 @@
 		<ingredient count="518400" id="57" />
 		<!-- Event - Black Crystal Cube Fragment -->
 		<ingredient count="1" id="14733" />
-		<!-- High-Grade Life Stone: level 52 -->
+		<!-- High-Grade Life Stone -  Level 52 -->
 		<production count="1" id="8745" />
 	</item>
 	<item>
@@ -293,7 +293,7 @@
 		<ingredient count="864000" id="57" />
 		<!-- Event - Black Crystal Cube Fragment -->
 		<ingredient count="1" id="14733" />
-		<!-- High-Grade Life Stone: level 61 -->
+		<!-- High-Grade Life Stone -  Level 61 -->
 		<production count="1" id="8748" />
 	</item>
 	<item>
@@ -301,7 +301,7 @@
 		<ingredient count="1555200" id="57" />
 		<!-- Event - Black Crystal Cube Fragment -->
 		<ingredient count="1" id="14733" />
-		<!-- High-Grade Life Stone: level 70 -->
+		<!-- High-Grade Life Stone -  Level 70 -->
 		<production count="1" id="8751" />
 	</item>
 	<item>
@@ -309,7 +309,7 @@
 		<ingredient count="1728000" id="57" />
 		<!-- Event - Black Crystal Cube Fragment -->
 		<ingredient count="1" id="14733" />
-		<!-- High-Grade Life Stone: level 76 -->
+		<!-- High-Grade Life Stone -  Level 76 -->
 		<production count="1" id="8752" />
 	</item>
 	<item>
@@ -317,7 +317,7 @@
 		<ingredient count="2073600" id="57" />
 		<!-- Event - Black Crystal Cube Fragment -->
 		<ingredient count="1" id="14733" />
-		<!-- High-Grade Life Stone: level 80 -->
+		<!-- High-Grade Life Stone -  Level 80 -->
 		<production count="1" id="9575" />
 	</item>
 	<item>
@@ -325,7 +325,7 @@
 		<ingredient count="2592000" id="57" />
 		<!-- Event - Dark Brown Crystal Cube Fragment -->
 		<ingredient count="1" id="14737" />
-		<!-- Top-Grade Life Stone: level 52 -->
+		<!-- Top-Grade Life Stone -  Level 52 -->
 		<production count="1" id="8755" />
 	</item>
 	<item>
@@ -333,7 +333,7 @@
 		<ingredient count="4320000" id="57" />
 		<!-- Event - Dark Brown Crystal Cube Fragment -->
 		<ingredient count="1" id="14737" />
-		<!-- Top-Grade Life Stone: level 61 -->
+		<!-- Top-Grade Life Stone -  Level 61 -->
 		<production count="1" id="8758" />
 	</item>
 	<item>
@@ -341,7 +341,7 @@
 		<ingredient count="7776000" id="57" />
 		<!-- Event - Dark Brown Crystal Cube Fragment -->
 		<ingredient count="1" id="14737" />
-		<!-- Top-Grade Life Stone: level 70 -->
+		<!-- Top-Grade Life Stone -  Level 70 -->
 		<production count="1" id="8761" />
 	</item>
 	<item>
@@ -349,7 +349,7 @@
 		<ingredient count="8640000" id="57" />
 		<!-- Event - Dark Brown Crystal Cube Fragment -->
 		<ingredient count="1" id="14737" />
-		<!-- Top-Grade Life Stone: level 76 -->
+		<!-- Top-Grade Life Stone -  Level 76 -->
 		<production count="1" id="8762" />
 	</item>
 	<item>
@@ -357,43 +357,43 @@
 		<ingredient count="10368000" id="57" />
 		<!-- Event - Dark Brown Crystal Cube Fragment -->
 		<ingredient count="1" id="14737" />
-		<!-- Top-Grade Life Stone: level 80 -->
+		<!-- Top-Grade Life Stone -  Level 80 -->
 		<production count="1" id="9576" />
 	</item>
 	<item>
-		<!-- Fine Blue Cubic Piece -->
+		<!-- Cube Fragment Weapon - D -->
 		<ingredient count="30" id="10642" />
 		<!-- Refined Cube - 1 time use -->
 		<production count="1" id="21107" />
 	</item>
 	<item>
-		<!-- Rough Blue Cubic Piece -->
+		<!-- Cube Fragment Armor - D -->
 		<ingredient count="100" id="10633" />
 		<!-- Refined Cube - 1 time use -->
 		<production count="1" id="21107" />
 	</item>
 	<item>
-		<!-- Fine Yellow Cubic Piece -->
+		<!-- Cube Fragment Weapon - C -->
 		<ingredient count="15" id="10643" />
 		<!-- Refined Cube - 1 time use -->
 		<production count="1" id="21107" />
 	</item>
 	<item>
-		<!-- Rough Yellow Cubic Piece -->
+		<!-- Cube Fragment Armor - C -->
 		<ingredient count="50" id="10634" />
 		<!-- Refined Cube - 1 time use -->
 		<production count="1" id="21107" />
 	</item>
 	<item>
-		<!-- Fine Blue Cubic Piece -->
+		<!-- Cube Fragment Weapon - D -->
 		<ingredient count="10" id="10642" />
 		<!-- Wondrous Cubic - 1 time use -->
 		<production count="1" id="21106" />
 	</item>
 	<item>
-		<!-- Rough Blue Cubic Piece -->
+		<!-- Cube Fragment Armor - D -->
 		<ingredient count="30" id="10633" />
 		<!-- Wondrous Cubic - 1 time use -->
 		<production count="1" id="21106" />
 	</item>
-</list>
\ No newline at end of file
+</list>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/648.xml b/L2J_DataPack_BETA/dist/game/data/multisell/648.xml
index 9fd1903afce9c172d54a7c20281388551747192d..268c4429a30cef6dd110c7f1d24b1d93ebd2a808 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/648.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/648.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Silver Ice Crystal -->
 		<ingredient count="23" id="8077" />
@@ -21,25 +21,25 @@
 	<item>
 		<!-- Black Ice Crystal -->
 		<ingredient count="1800" id="8078" />
-		<!-- Scroll: Enchant Weapon (A) -->
+		<!-- Scroll: Enchant Weapon (A-Grade) -->
 		<production count="1" id="729" />
 	</item>
 	<item>
 		<!-- Black Ice Crystal -->
 		<ingredient count="240" id="8078" />
-		<!-- Scroll: Enchant Armor (A) -->
+		<!-- Scroll: Enchant Armor (A-Grade) -->
 		<production count="1" id="730" />
 	</item>
 	<item>
 		<!-- Black Ice Crystal -->
 		<ingredient count="500" id="8078" />
-		<!-- Scroll: Enchant Weapon (B) -->
+		<!-- Scroll: Enchant Weapon (B-Grade) -->
 		<production count="1" id="947" />
 	</item>
 	<item>
 		<!-- Black Ice Crystal -->
 		<ingredient count="80" id="8078" />
-		<!-- Scroll: Enchant Armor (B) -->
+		<!-- Scroll: Enchant Armor (B-Grade) -->
 		<production count="1" id="948" />
 	</item>
 </list>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/660.xml b/L2J_DataPack_BETA/dist/game/data/multisell/660.xml
index 39201b52bf291df9a96fb9415c0fac7c270d443c..a367547dd4088b01b0f4d95db24eb5cec9b63771 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/660.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/660.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="10000" id="57" />
@@ -11,37 +11,37 @@
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Gludio Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Human Mercenary -->
 		<production count="1" id="13569" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Gludio Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Elf Mercenary -->
 		<production count="1" id="13570" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Gludio Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Dark Elf Mercenary -->
 		<production count="1" id="13571" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Gludio Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Orc Mercenary -->
 		<production count="1" id="13572" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Gludio Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Dwarf Mercenary -->
 		<production count="1" id="13573" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Gludio Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Kamael Mercenary -->
 		<production count="1" id="13574" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/661.xml b/L2J_DataPack_BETA/dist/game/data/multisell/661.xml
index c92453100c3e6ea008f967aadd89bef97cdfada1..3e1b6b73fd1ce586180d99747918d22abc8b69f0 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/661.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/661.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="10000" id="57" />
@@ -11,37 +11,37 @@
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Dion Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Human Mercenary -->
 		<production count="1" id="13581" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Dion Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Elf Mercenary -->
 		<production count="1" id="13582" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Dion Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Dark Elf Mercenary -->
 		<production count="1" id="13583" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Dion Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Orc Mercenary -->
 		<production count="1" id="13584" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Dion Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Dwarf Mercenary -->
 		<production count="1" id="13585" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Dion Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Kamael Mercenary -->
 		<production count="1" id="13586" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/662.xml b/L2J_DataPack_BETA/dist/game/data/multisell/662.xml
index d155ddbd8229d81c44d897881395abdbbca74e40..ddc02ddfb82544bb9e714a598d7b3e1b60c32805 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/662.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/662.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="10000" id="57" />
@@ -11,37 +11,37 @@
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Giran Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Human Mercenary -->
 		<production count="1" id="13593" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Giran Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Elf Mercenary -->
 		<production count="1" id="13594" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Giran Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Dark Elf Mercenary -->
 		<production count="1" id="13595" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Giran Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Orc Mercenary -->
 		<production count="1" id="13596" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Giran Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Dwarf Mercenary -->
 		<production count="1" id="13597" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Giran Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Kamael Mercenary -->
 		<production count="1" id="13598" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/663.xml b/L2J_DataPack_BETA/dist/game/data/multisell/663.xml
index eb7b8b395d31d017228af1e9d3cd51b7ed67f8f8..259ca6cf10b1df2afbe819b7930f737b27567b45 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/663.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/663.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="10000" id="57" />
@@ -11,37 +11,37 @@
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Oren Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Human Mercenary -->
 		<production count="1" id="13605" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Oren Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Elf Mercenary -->
 		<production count="1" id="13606" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Oren Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Dark Elf Mercenary -->
 		<production count="1" id="13607" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Oren Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Orc Mercenary -->
 		<production count="1" id="13608" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Oren Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Dwarf Mercenary -->
 		<production count="1" id="13609" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Oren Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Kamael Mercenary -->
 		<production count="1" id="13610" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/664.xml b/L2J_DataPack_BETA/dist/game/data/multisell/664.xml
index 419e4598500548fec94fabc2315225bd6bca187c..ff82df0cd0db1c9023433214e71ad49f193c163b 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/664.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/664.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="10000" id="57" />
@@ -11,37 +11,37 @@
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Aden Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Human Mercenary -->
 		<production count="1" id="13617" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Aden Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Elf Mercenary -->
 		<production count="1" id="13618" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Aden Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Dark Elf Mercenary -->
 		<production count="1" id="13619" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Aden Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Orc Mercenary -->
 		<production count="1" id="13620" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Aden Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Dwarf Mercenary -->
 		<production count="1" id="13621" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Aden Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Kamael Mercenary -->
 		<production count="1" id="13622" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/665.xml b/L2J_DataPack_BETA/dist/game/data/multisell/665.xml
index ce4ba67c44c284e71fd1418fc9906a2214026698..06809c644fb7b0cf64424fffd5b3197ae112624a 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/665.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/665.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="10000" id="57" />
@@ -11,37 +11,37 @@
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Innadril Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Human Mercenary -->
 		<production count="1" id="13629" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Innadril Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Elf Mercenary -->
 		<production count="1" id="13630" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Innadril Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Dark Elf Mercenary -->
 		<production count="1" id="13631" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Innadril Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Orc Mercenary -->
 		<production count="1" id="13632" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Innadril Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Dwarf Mercenary -->
 		<production count="1" id="13633" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Innadril Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Kamael Mercenary -->
 		<production count="1" id="13634" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/666.xml b/L2J_DataPack_BETA/dist/game/data/multisell/666.xml
index bfa4ec5fcb1b015ccd288c7eed71853dc78a57de..2c8b82f6dc82cf6097c6881e9e5ecd77f5654845 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/666.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/666.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="10000" id="57" />
@@ -11,37 +11,37 @@
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Goddard Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Human Mercenary -->
 		<production count="1" id="13641" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Goddard Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Elf Mercenary -->
 		<production count="1" id="13642" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Goddard Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Dark Elf Mercenary -->
 		<production count="1" id="13643" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Goddard Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Orc Mercenary -->
 		<production count="1" id="13644" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Goddard Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Dwarf Mercenary -->
 		<production count="1" id="13645" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Goddard Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Kamael Mercenary -->
 		<production count="1" id="13646" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/667.xml b/L2J_DataPack_BETA/dist/game/data/multisell/667.xml
index 2e04dd27659616078d7c98066ad26516a2fefe6d..729536d56be7324952b165b95bdfc12dec3c5d21 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/667.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/667.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="10000" id="57" />
@@ -11,37 +11,37 @@
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Rune Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Human Mercenary -->
 		<production count="1" id="13653" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Rune Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Elf Mercenary -->
 		<production count="1" id="13654" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Rune Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Dark Elf Mercenary -->
 		<production count="1" id="13655" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Rune Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Orc Mercenary -->
 		<production count="1" id="13656" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Rune Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Dwarf Mercenary -->
 		<production count="1" id="13657" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Rune Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Kamael Mercenary -->
 		<production count="1" id="13658" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/668.xml b/L2J_DataPack_BETA/dist/game/data/multisell/668.xml
index 8de6a0808edfa4a42dd6580cf4c398d914ffdec1..11284a218c6ff5d9d5ceb85e1d013efa3a2c34cc 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/668.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/668.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="10000" id="57" />
@@ -11,37 +11,37 @@
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Schuttgart Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Human Mercenary -->
 		<production count="1" id="13665" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Schuttgart Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Elf Mercenary -->
 		<production count="1" id="13666" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Schuttgart Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Dark Elf Mercenary -->
 		<production count="1" id="13667" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Schuttgart Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Orc Mercenary -->
 		<production count="1" id="13668" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Schuttgart Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Dwarf Mercenary -->
 		<production count="1" id="13669" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Schuttgart Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Kamael Mercenary -->
 		<production count="1" id="13670" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/677.xml b/L2J_DataPack_BETA/dist/game/data/multisell/677.xml
index 21a7a1640dd6b7fa5f8b9e93bf38f43eae887422..6e990460dccee1717c1564a841d11203e296857a 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/677.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/677.xml
@@ -1,39 +1,39 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Gludio Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Human Mercenary -->
 		<production count="1" id="13569" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Gludio Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Elf Mercenary -->
 		<production count="1" id="13570" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Gludio Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Dark Elf Mercenary -->
 		<production count="1" id="13571" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Gludio Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Orc Mercenary -->
 		<production count="1" id="13572" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Gludio Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Dwarf Mercenary -->
 		<production count="1" id="13573" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Gludio Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Kamael Mercenary -->
 		<production count="1" id="13574" />
 	</item>
 	<item>
@@ -55,7 +55,7 @@
 		<ingredient count="13300" id="57" />
 		<!-- Gludio Territory Badge -->
 		<ingredient count="11" id="13757" />
-		<!-- White Talisman - All Resistance -->
+		<!-- White Talisman -  All Resistance -->
 		<production count="1" id="14814" />
 	</item>
 	<item>
@@ -63,7 +63,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Gludio Territory Badge -->
 		<ingredient count="5" id="13757" />
-		<!-- Gludio Archer Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Archer Mercenary -->
 		<production count="1" id="13576" />
 	</item>
 	<item>
@@ -71,7 +71,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Gludio Territory Badge -->
 		<ingredient count="5" id="13757" />
-		<!-- Gludio Wizard Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Wizard Mercenary -->
 		<production count="1" id="13577" />
 	</item>
 	<item>
@@ -79,7 +79,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Gludio Territory Badge -->
 		<ingredient count="5" id="13757" />
-		<!-- Gludio Kamael Captain Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Gludio Kamael Captain Mercenary -->
 		<production count="1" id="13578" />
 	</item>
 </list>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/678.xml b/L2J_DataPack_BETA/dist/game/data/multisell/678.xml
index 55af3645cc807cef2b32347dcbf0f47597d5ef57..e8127b9d3896c9baa571ccf5d8a8879f348d3aa7 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/678.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/678.xml
@@ -1,39 +1,39 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Dion Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Human Mercenary -->
 		<production count="1" id="13581" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Dion Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Elf Mercenary -->
 		<production count="1" id="13582" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Dion Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Dark Elf Mercenary -->
 		<production count="1" id="13583" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Dion Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Orc Mercenary -->
 		<production count="1" id="13584" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Dion Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Dwarf Mercenary -->
 		<production count="1" id="13585" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Dion Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Kamael Mercenary -->
 		<production count="1" id="13586" />
 	</item>
 	<item>
@@ -55,7 +55,7 @@
 		<ingredient count="13300" id="57" />
 		<!-- Dion Territory Badge -->
 		<ingredient count="11" id="13758" />
-		<!-- White Talisman - All Resistance -->
+		<!-- White Talisman -  All Resistance -->
 		<production count="1" id="14814" />
 	</item>
 	<item>
@@ -63,7 +63,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Dion Territory Badge -->
 		<ingredient count="5" id="13758" />
-		<!-- Dion Archer Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Archer Mercenary -->
 		<production count="1" id="13588" />
 	</item>
 	<item>
@@ -71,7 +71,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Dion Territory Badge -->
 		<ingredient count="5" id="13758" />
-		<!-- Dion Wizard Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Wizard Mercenary -->
 		<production count="1" id="13589" />
 	</item>
 	<item>
@@ -79,7 +79,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Dion Territory Badge -->
 		<ingredient count="5" id="13758" />
-		<!-- Dion Kamael Captain Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Dion Kamael Captain Mercenary -->
 		<production count="1" id="13590" />
 	</item>
 </list>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/679.xml b/L2J_DataPack_BETA/dist/game/data/multisell/679.xml
index 733da46ca8696a21ececb39d4de92bdedad04525..398a2bb7193ff2c542a3080c1a3cea09961767f0 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/679.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/679.xml
@@ -1,39 +1,39 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Giran Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Human Mercenary -->
 		<production count="1" id="13593" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Giran Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Elf Mercenary -->
 		<production count="1" id="13594" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Giran Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Dark Elf Mercenary -->
 		<production count="1" id="13595" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Giran Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Orc Mercenary -->
 		<production count="1" id="13596" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Giran Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Dwarf Mercenary -->
 		<production count="1" id="13597" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Giran Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Kamael Mercenary -->
 		<production count="1" id="13598" />
 	</item>
 	<item>
@@ -55,7 +55,7 @@
 		<ingredient count="13300" id="57" />
 		<!-- Giran Territory Badge -->
 		<ingredient count="11" id="13759" />
-		<!-- White Talisman - All Resistance -->
+		<!-- White Talisman -  All Resistance -->
 		<production count="1" id="14814" />
 	</item>
 	<item>
@@ -63,7 +63,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Giran Territory Badge -->
 		<ingredient count="5" id="13759" />
-		<!-- Giran Archer Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Archer Mercenary -->
 		<production count="1" id="13600" />
 	</item>
 	<item>
@@ -71,7 +71,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Giran Territory Badge -->
 		<ingredient count="5" id="13759" />
-		<!-- Giran Wizard Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Wizard Mercenary -->
 		<production count="1" id="13601" />
 	</item>
 	<item>
@@ -79,7 +79,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Giran Territory Badge -->
 		<ingredient count="5" id="13759" />
-		<!-- Giran Kamael Captain Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Giran Kamael Captain Mercenary -->
 		<production count="1" id="13602" />
 	</item>
 </list>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/680.xml b/L2J_DataPack_BETA/dist/game/data/multisell/680.xml
index 6c61f1019e6a1f34955e9720806d2dba66be3789..4b6955ea1cb326cfe216339c564083ebf49e686e 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/680.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/680.xml
@@ -1,39 +1,39 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Oren Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Human Mercenary -->
 		<production count="1" id="13605" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Oren Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Elf Mercenary -->
 		<production count="1" id="13606" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Oren Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Dark Elf Mercenary -->
 		<production count="1" id="13607" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Oren Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Orc Mercenary -->
 		<production count="1" id="13608" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Oren Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Dwarf Mercenary -->
 		<production count="1" id="13609" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Oren Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Kamael Mercenary -->
 		<production count="1" id="13610" />
 	</item>
 	<item>
@@ -55,7 +55,7 @@
 		<ingredient count="13300" id="57" />
 		<!-- Oren Territory Badge -->
 		<ingredient count="11" id="13760" />
-		<!-- White Talisman - All Resistance -->
+		<!-- White Talisman -  All Resistance -->
 		<production count="1" id="14814" />
 	</item>
 	<item>
@@ -63,7 +63,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Oren Territory Badge -->
 		<ingredient count="5" id="13760" />
-		<!-- Oren Archer Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Archer Mercenary -->
 		<production count="1" id="13612" />
 	</item>
 	<item>
@@ -71,7 +71,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Oren Territory Badge -->
 		<ingredient count="5" id="13760" />
-		<!-- Oren Wizard Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Wizard Mercenary -->
 		<production count="1" id="13613" />
 	</item>
 	<item>
@@ -79,7 +79,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Oren Territory Badge -->
 		<ingredient count="5" id="13760" />
-		<!-- Oren Kamael Captain Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Oren Kamael Captain Mercenary -->
 		<production count="1" id="13614" />
 	</item>
 </list>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/681.xml b/L2J_DataPack_BETA/dist/game/data/multisell/681.xml
index 184d47b20bd8e2c04c24e3b80752f914323d8422..7bcfb729a24029b351ae539b63b070b036511d51 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/681.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/681.xml
@@ -1,39 +1,39 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Aden Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Human Mercenary -->
 		<production count="1" id="13617" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Aden Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Elf Mercenary -->
 		<production count="1" id="13618" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Aden Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Dark Elf Mercenary -->
 		<production count="1" id="13619" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Aden Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Orc Mercenary -->
 		<production count="1" id="13620" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Aden Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Dwarf Mercenary -->
 		<production count="1" id="13621" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Aden Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Kamael Mercenary -->
 		<production count="1" id="13622" />
 	</item>
 	<item>
@@ -55,7 +55,7 @@
 		<ingredient count="13300" id="57" />
 		<!-- Aden Territory Badge -->
 		<ingredient count="11" id="13761" />
-		<!-- White Talisman - All Resistance -->
+		<!-- White Talisman -  All Resistance -->
 		<production count="1" id="14814" />
 	</item>
 	<item>
@@ -63,7 +63,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Aden Territory Badge -->
 		<ingredient count="5" id="13761" />
-		<!-- Aden Archer Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Archer Mercenary -->
 		<production count="1" id="13624" />
 	</item>
 	<item>
@@ -71,7 +71,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Aden Territory Badge -->
 		<ingredient count="5" id="13761" />
-		<!-- Aden Wizard Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Wizard Mercenary -->
 		<production count="1" id="13625" />
 	</item>
 	<item>
@@ -79,7 +79,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Aden Territory Badge -->
 		<ingredient count="5" id="13761" />
-		<!-- Aden Kamael Captain Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Aden Kamael Captain Mercenary -->
 		<production count="1" id="13626" />
 	</item>
 </list>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/682.xml b/L2J_DataPack_BETA/dist/game/data/multisell/682.xml
index dfbe69ef7a9e14d8c51eb0ff56585d12fb51529d..dff266b573e3793642355ce3aacee2e3acb5a70c 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/682.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/682.xml
@@ -1,39 +1,39 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Innadril Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Human Mercenary -->
 		<production count="1" id="13629" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Innadril Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Elf Mercenary -->
 		<production count="1" id="13630" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Innadril Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Dark Elf Mercenary -->
 		<production count="1" id="13631" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Innadril Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Orc Mercenary -->
 		<production count="1" id="13632" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Innadril Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Dwarf Mercenary -->
 		<production count="1" id="13633" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Innadril Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Kamael Mercenary -->
 		<production count="1" id="13634" />
 	</item>
 	<item>
@@ -55,7 +55,7 @@
 		<ingredient count="13300" id="57" />
 		<!-- Innadril Territory Badge -->
 		<ingredient count="11" id="13762" />
-		<!-- White Talisman - All Resistance -->
+		<!-- White Talisman -  All Resistance -->
 		<production count="1" id="14814" />
 	</item>
 	<item>
@@ -63,7 +63,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Innadril Territory Badge -->
 		<ingredient count="5" id="13762" />
-		<!-- Innadril Archer Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Archer Mercenary -->
 		<production count="1" id="13636" />
 	</item>
 	<item>
@@ -71,7 +71,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Innadril Territory Badge -->
 		<ingredient count="5" id="13762" />
-		<!-- Innadril Wizard Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Wizard Mercenary -->
 		<production count="1" id="13637" />
 	</item>
 	<item>
@@ -79,7 +79,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Innadril Territory Badge -->
 		<ingredient count="5" id="13762" />
-		<!-- Innadril Kamael Captain Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Innadril Kamael Captain Mercenary -->
 		<production count="1" id="13638" />
 	</item>
 </list>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/683.xml b/L2J_DataPack_BETA/dist/game/data/multisell/683.xml
index c8f6562d3225961d6b4aa96006df3ad8930a3e1a..50c6cbedbb8a43bea53dfa9ba4eaf2cab3bd5be2 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/683.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/683.xml
@@ -1,39 +1,39 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Goddard Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Human Mercenary -->
 		<production count="1" id="13641" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Goddard Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Elf Mercenary -->
 		<production count="1" id="13642" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Goddard Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Dark Elf Mercenary -->
 		<production count="1" id="13643" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Goddard Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Orc Mercenary -->
 		<production count="1" id="13644" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Goddard Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Dwarf Mercenary -->
 		<production count="1" id="13645" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Goddard Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Kamael Mercenary -->
 		<production count="1" id="13646" />
 	</item>
 	<item>
@@ -55,7 +55,7 @@
 		<ingredient count="13300" id="57" />
 		<!-- Goddard Territory Badge -->
 		<ingredient count="11" id="13763" />
-		<!-- White Talisman - All Resistance -->
+		<!-- White Talisman -  All Resistance -->
 		<production count="1" id="14814" />
 	</item>
 	<item>
@@ -63,7 +63,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Goddard Territory Badge -->
 		<ingredient count="5" id="13763" />
-		<!-- Goddard Archer Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Archer Mercenary -->
 		<production count="1" id="13648" />
 	</item>
 	<item>
@@ -71,7 +71,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Goddard Territory Badge -->
 		<ingredient count="5" id="13763" />
-		<!-- Goddard Wizard Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Wizard Mercenary -->
 		<production count="1" id="13649" />
 	</item>
 	<item>
@@ -79,7 +79,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Goddard Territory Badge -->
 		<ingredient count="5" id="13763" />
-		<!-- Goddard Kamael Captain Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Goddard Kamael Captain Mercenary -->
 		<production count="1" id="13650" />
 	</item>
 </list>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/684.xml b/L2J_DataPack_BETA/dist/game/data/multisell/684.xml
index e535adb171a9aadfe5730f36421ffc0d608ca2b8..973064b772cee0aeaf8cbe1f6d147ef57a65ccae 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/684.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/684.xml
@@ -1,39 +1,39 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Rune Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Human Mercenary -->
 		<production count="1" id="13653" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Rune Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Elf Mercenary -->
 		<production count="1" id="13654" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Rune Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Dark Elf Mercenary -->
 		<production count="1" id="13655" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Rune Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Orc Mercenary -->
 		<production count="1" id="13656" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Rune Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Dwarf Mercenary -->
 		<production count="1" id="13657" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Rune Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Kamael Mercenary -->
 		<production count="1" id="13658" />
 	</item>
 	<item>
@@ -55,7 +55,7 @@
 		<ingredient count="13300" id="57" />
 		<!-- Rune Territory Badge -->
 		<ingredient count="11" id="13764" />
-		<!-- White Talisman - All Resistance -->
+		<!-- White Talisman -  All Resistance -->
 		<production count="1" id="14814" />
 	</item>
 	<item>
@@ -63,7 +63,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Rune Territory Badge -->
 		<ingredient count="5" id="13764" />
-		<!-- Rune Archer Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Archer Mercenary -->
 		<production count="1" id="13660" />
 	</item>
 	<item>
@@ -71,7 +71,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Rune Territory Badge -->
 		<ingredient count="5" id="13764" />
-		<!-- Rune Wizard Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Wizard Mercenary -->
 		<production count="1" id="13661" />
 	</item>
 	<item>
@@ -79,7 +79,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Rune Territory Badge -->
 		<ingredient count="5" id="13764" />
-		<!-- Rune Kamael Captain Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Rune Kamael Captain Mercenary -->
 		<production count="1" id="13662" />
 	</item>
 </list>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/685.xml b/L2J_DataPack_BETA/dist/game/data/multisell/685.xml
index 94bcaabd07f31513b759de470302d115fc5cdf3d..f7b3ac5def4667f8f852de7e0dd26a9e93fa8c38 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/685.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/685.xml
@@ -1,39 +1,39 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Schuttgart Human Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Human Mercenary -->
 		<production count="1" id="13665" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Schuttgart Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Elf Mercenary -->
 		<production count="1" id="13666" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Schuttgart Dark Elf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Dark Elf Mercenary -->
 		<production count="1" id="13667" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Schuttgart Orc Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Orc Mercenary -->
 		<production count="1" id="13668" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Schuttgart Dwarf Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Dwarf Mercenary -->
 		<production count="1" id="13669" />
 	</item>
 	<item>
 		<!-- Adena -->
 		<ingredient count="13200" id="57" />
-		<!-- Schuttgart Kamael Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Kamael Mercenary -->
 		<production count="1" id="13670" />
 	</item>
 	<item>
@@ -55,7 +55,7 @@
 		<ingredient count="13300" id="57" />
 		<!-- Schuttgart Territory Badge -->
 		<ingredient count="11" id="13765" />
-		<!-- White Talisman - All Resistance -->
+		<!-- White Talisman -  All Resistance -->
 		<production count="1" id="14814" />
 	</item>
 	<item>
@@ -63,7 +63,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Schuttgart Territory Badge -->
 		<ingredient count="5" id="13765" />
-		<!-- Schuttgart Archer Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Archer Mercenary -->
 		<production count="1" id="13672" />
 	</item>
 	<item>
@@ -71,7 +71,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Schuttgart Territory Badge -->
 		<ingredient count="5" id="13765" />
-		<!-- Schuttgart Wizard Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Wizard Mercenary -->
 		<production count="1" id="13673" />
 	</item>
 	<item>
@@ -79,7 +79,7 @@
 		<ingredient count="27800" id="57" />
 		<!-- Schuttgart Territory Badge -->
 		<ingredient count="5" id="13765" />
-		<!-- Schuttgart Kamael Captain Mercenary Transformation Scroll -->
+		<!-- Transformation Scroll: Schuttgart Kamael Captain Mercenary -->
 		<production count="1" id="13674" />
 	</item>
 </list>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/7834.xml b/L2J_DataPack_BETA/dist/game/data/multisell/7834.xml
index 2e477e7f9f00c54ede86d00bca60f7b2853e80c1..0483d5c8c44a8059cb80ec2bbd5b521a7a797e39 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/7834.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/7834.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Nebulite Orb -->
 		<ingredient count="10" id="4364" />
@@ -15,7 +15,7 @@
 	<item>
 		<!-- Nebulite Orb -->
 		<ingredient count="20" id="4364" />
-		<!-- Potion of Alacrity -->
+		<!-- Alacrity Potion -->
 		<production count="1" id="735" />
 	</item>
 	<item>
@@ -27,13 +27,13 @@
 	<item>
 		<!-- Nebulite Orb -->
 		<ingredient count="100" id="4364" />
-		<!-- Scroll: Enchant Armor (D) -->
+		<!-- Scroll: Enchant Armor (D-Grade) -->
 		<production count="1" id="956" />
 	</item>
 	<item>
 		<!-- Nebulite Orb -->
 		<ingredient count="400" id="4364" />
-		<!-- Scroll: Enchant Armor (C) -->
+		<!-- Scroll: Enchant Armor (C-Grade) -->
 		<production count="1" id="952" />
 	</item>
 	<item>
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/7897.xml b/L2J_DataPack_BETA/dist/game/data/multisell/7897.xml
index 61b32811584b0dea7ac4d6b75a1649ecaaa31886..175e77929d95dddf0351ebecc531a2bfa0ab281a 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/7897.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/7897.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Iason Heine's Bill -->
 		<ingredient count="1" id="4310" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/90001000.xml b/L2J_DataPack_BETA/dist/game/data/multisell/90001000.xml
index 17f43eb5fb76a74b817432ca8d52175e5c9f714b..ffb5eb227c359350126f2f274bbecfd563c5009d 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/90001000.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/90001000.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Knight's Epaulette -->
 		<ingredient count="200" id="9912" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/90001001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/90001001.xml
index da68379c348cf652225ba7c61cd9bb8be3d0752c..4505a3b6d1cda8d15e353b093a13f0de40630f1b 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/90001001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/90001001.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Knight's Epaulette -->
 		<ingredient count="480" id="9912" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/90001002.xml b/L2J_DataPack_BETA/dist/game/data/multisell/90001002.xml
index 245a4f773fde6e5b3d81148792176d3d87838f81..a58c1c2240912b413fc5e3ab808fab54db06239a 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/90001002.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/90001002.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Knight's Epaulette -->
 		<ingredient count="216" id="9912" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/90001003.xml b/L2J_DataPack_BETA/dist/game/data/multisell/90001003.xml
index e44c11c798bc6ad8a76505d4788bc0fd03212e5f..aece32cd5ba66e93e75733ed0f9201967e0a663d 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/90001003.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/90001003.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Knight's Epaulette -->
 		<ingredient count="80" id="9912" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/90001004.xml b/L2J_DataPack_BETA/dist/game/data/multisell/90001004.xml
index 0c94350761ce02a1006a453cb612ec31dd337606..d47edb4a445901c6290456880584b7b9fbef9adc 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/90001004.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/90001004.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Silk Shirt -->
 		<ingredient count="1" id="9579" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/90002001.xml b/L2J_DataPack_BETA/dist/game/data/multisell/90002001.xml
index 4f3f6c8d641ecbbe9bac6371c038271525f02b28..ae4cff5ecda2f341e1b11995376a686a4640b4c7 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/90002001.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/90002001.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Knight's Epaulette -->
 		<ingredient count="480" id="9912" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/90002002.xml b/L2J_DataPack_BETA/dist/game/data/multisell/90002002.xml
index 245a4f773fde6e5b3d81148792176d3d87838f81..a58c1c2240912b413fc5e3ab808fab54db06239a 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/90002002.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/90002002.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Knight's Epaulette -->
 		<ingredient count="216" id="9912" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/90002003.xml b/L2J_DataPack_BETA/dist/game/data/multisell/90002003.xml
index e44c11c798bc6ad8a76505d4788bc0fd03212e5f..aece32cd5ba66e93e75733ed0f9201967e0a663d 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/90002003.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/90002003.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Knight's Epaulette -->
 		<ingredient count="80" id="9912" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/90002004.xml b/L2J_DataPack_BETA/dist/game/data/multisell/90002004.xml
index 0c94350761ce02a1006a453cb612ec31dd337606..d47edb4a445901c6290456880584b7b9fbef9adc 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/90002004.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/90002004.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list maintainEnchantment="true" xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Silk Shirt -->
 		<ingredient count="1" id="9579" />
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/999.xml b/L2J_DataPack_BETA/dist/game/data/multisell/999.xml
index e3bcbced7206a67e492bb434adae1a2d8e3b3342..9c4b77af1ee1a616372836ae8cda72ffd2d2d933 100644
--- a/L2J_DataPack_BETA/dist/game/data/multisell/999.xml
+++ b/L2J_DataPack_BETA/dist/game/data/multisell/999.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="multisell.xsd">
+<list xmlns:ns0="http://www.w3.org/2001/XMLSchema-instance" ns0:noNamespaceSchemaLocation="../xsd/multisell.xsd">
 	<item>
 		<!-- Adena -->
 		<ingredient count="80000" id="57" />
diff --git a/L2J_DataPack_BETA/dist/game/data/recipes.xml b/L2J_DataPack_BETA/dist/game/data/recipes.xml
index 269b3ef7b185cc1989a1e5098549ab6d8a69a0be..c82e0a86eea3675ce0475ef56b2c6904b7d58ca5 100644
--- a/L2J_DataPack_BETA/dist/game/data/recipes.xml
+++ b/L2J_DataPack_BETA/dist/game/data/recipes.xml
@@ -6,7 +6,7 @@
 <!-- XP: base XP value -->
 <!-- SP: base SP value -->
 <!-- GIM: the old function used only the skilllevel to determine how many item is grabbed in each step with this stat changer you can multiple this -->
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="recipes.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/recipes.xsd">
 	<item id="1" recipeId="1666" name="mk_wooden_arrow" craftLevel="1" type="dwarven" successRate="100">
 		<ingredient id="1864" count="4" />
 		<ingredient id="1869" count="2" />
diff --git a/L2J_DataPack_BETA/dist/game/data/scripts/handlers/telnethandlers/DebugHandler.java b/L2J_DataPack_BETA/dist/game/data/scripts/handlers/telnethandlers/DebugHandler.java
index 729c81e296b12d1a8793d316e8eb4b926a0ef4fd..a47952a14359baf7b209c61d1aac9767b1da26d8 100644
--- a/L2J_DataPack_BETA/dist/game/data/scripts/handlers/telnethandlers/DebugHandler.java
+++ b/L2J_DataPack_BETA/dist/game/data/scripts/handlers/telnethandlers/DebugHandler.java
@@ -16,6 +16,8 @@ package handlers.telnethandlers;
 
 import java.io.File;
 import java.io.FileOutputStream;
+import java.io.FileWriter;
+import java.io.IOException;
 import java.io.OutputStreamWriter;
 import java.io.PrintWriter;
 import java.lang.management.ManagementFactory;
@@ -27,6 +29,7 @@ import java.util.Calendar;
 import java.util.Map;
 import java.util.Map.Entry;
 import java.util.StringTokenizer;
+import java.util.TreeMap;
 
 import javolution.util.FastComparator;
 import javolution.util.FastTable;
@@ -36,7 +39,10 @@ import com.l2jserver.gameserver.GameTimeController;
 import com.l2jserver.gameserver.GmListTable;
 import com.l2jserver.gameserver.LoginServerThread;
 import com.l2jserver.gameserver.ThreadPoolManager;
+import com.l2jserver.gameserver.datatables.ItemTable;
+import com.l2jserver.gameserver.datatables.SkillTable;
 import com.l2jserver.gameserver.handler.ITelnetHandler;
+import com.l2jserver.gameserver.model.L2ExtractableProductItem;
 import com.l2jserver.gameserver.model.L2Object;
 import com.l2jserver.gameserver.model.L2World;
 import com.l2jserver.gameserver.model.actor.L2Character;
@@ -46,6 +52,8 @@ import com.l2jserver.gameserver.model.actor.instance.L2DoorInstance;
 import com.l2jserver.gameserver.model.actor.instance.L2MonsterInstance;
 import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
 import com.l2jserver.gameserver.model.items.instance.L2ItemInstance;
+import com.l2jserver.gameserver.model.skills.L2Skill;
+import com.l2jserver.gameserver.model.skills.L2SkillType;
 import com.l2jserver.gameserver.taskmanager.DecayTaskManager;
 
 /**
@@ -55,14 +63,65 @@ public class DebugHandler implements ITelnetHandler
 {
 	private final String[] _commands =
 	{
-		"debug"
+		"debug",
+		"dumpSkillz"
 	};
-	
+	Map<Integer, String> _sortedMap = new TreeMap<Integer, String>();
 	private int uptime = 0;
 	
 	@Override
 	public boolean useCommand(String command, PrintWriter _print, Socket _cSocket, int _uptime)
 	{
+		if (command.startsWith("dumpSkillz"))
+		{
+			StringBuilder sb = new StringBuilder();
+			for (L2Skill skill : SkillTable.getInstance().getAllSkills().values(new L2Skill[0]))
+			{
+				sb = new StringBuilder();
+				if (skill.getSkillType() == L2SkillType.EXTRACTABLE || skill.getSkillType() == L2SkillType.EXTRACTABLE_FISH)
+				{
+					sb.append("\t<skill id=\"" + skill.getId() + "\" level=\"" + skill.getLevel() + "\"> <!-- " + skill.getName() + " -->\r\n");
+					for (L2ExtractableProductItem product : skill.getExtractableSkill().getProductItemsArray())
+					{
+						if (product.getId().length > 1)
+						{
+							sb.append("\t\t<group chance=\"" + product.getChance() + "\">\r\n");
+							for (int i = 0; i < product.getId().length; i++)
+							{
+								sb.append("\t\t\t<item id=\"" + product.getId()[i] + "\" count=\"" + product.getAmmount()[i] + "\" /> <!-- " + ItemTable.getInstance().getTemplate(product.getId()[i]).getName() + " -->\r\n");
+							}
+							sb.append("\t\t</group>\r\n");
+						}
+						else
+						{
+							sb.append("\t\t<item id=\"" + product.getId()[0] + "\" count=\"" + product.getAmmount()[0] + "\" chance=\"" + product.getChance() + "\" /> <!-- " + ItemTable.getInstance().getTemplate(product.getId()[0]).getName() + " -->\r\n");
+						}
+					}
+					sb.append("\t</skill>\r\n");
+					_sortedMap.put(SkillTable.getSkillHashCode(skill), sb.toString());
+				}
+			}
+			sb = new StringBuilder();
+			sb.append("<list>\r\n");
+			for (String data : _sortedMap.values())
+			{
+				sb.append(data);
+			}
+			sb.append("</list>\r\n");
+			
+			try
+			{
+				FileWriter fw = new FileWriter(new File(Config.DATAPACK_ROOT, "extractableSkills.xml"));
+				fw.write(sb.toString());
+				fw.flush();
+				fw.close();
+			}
+			catch (IOException e)
+			{
+				// TODO Auto-generated catch block
+				e.printStackTrace();
+			}
+		}
 		if (command.startsWith("debug") && command.length() > 6)
 		{
 			StringTokenizer st = new StringTokenizer(command.substring(6));
diff --git a/L2J_DataPack_BETA/dist/game/data/seeds.xml b/L2J_DataPack_BETA/dist/game/data/seeds.xml
index fbcd5a3c8d30ccf7f9c92d87407647b708794970..71fb9719e3a1581b208c3392dedbb9aedac7d553 100644
--- a/L2J_DataPack_BETA/dist/game/data/seeds.xml
+++ b/L2J_DataPack_BETA/dist/game/data/seeds.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="seeds.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="xsd/seeds.xsd">
 	<castle id="1">
 		<crop id="5073">                 <!-- Dark Coda -->
 			<seed_id val="5016" />   <!-- Seed: Dark Coda -->
diff --git a/L2J_DataPack_BETA/dist/game/data/skillTrees/classSkillTree.xml b/L2J_DataPack_BETA/dist/game/data/skillTrees/classSkillTree.xml
index e23175952edf94b0683ac959515873682cb7df08..821e3b97ae8ed524f939323a6ac8de65a40b878d 100644
--- a/L2J_DataPack_BETA/dist/game/data/skillTrees/classSkillTree.xml
+++ b/L2J_DataPack_BETA/dist/game/data/skillTrees/classSkillTree.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skillTrees.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/skillTrees.xsd">
 	<!-- Human Fighter -->
 	<skillTree type="classSkillTree" classId="0">
 		<!-- Confirmed CT2.5 -->
diff --git a/L2J_DataPack_BETA/dist/game/data/skillTrees/collectSkillTree.xml b/L2J_DataPack_BETA/dist/game/data/skillTrees/collectSkillTree.xml
index 97189c65bb48995a53da6deed04d76ebba00d17a..022b278fd7f7eacd9e4522877b15052b9b23fdab 100644
--- a/L2J_DataPack_BETA/dist/game/data/skillTrees/collectSkillTree.xml
+++ b/L2J_DataPack_BETA/dist/game/data/skillTrees/collectSkillTree.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skillTrees.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/skillTrees.xsd">
 	<skillTree type="collectSkillTree">
 		<!-- Confirmed CT2.5 -->
 		<skill skillName="Star Stone Gathering" skillIdLvl="932,1" getLevel="1" itemsIdCount="13728,1" learnedByNpc="true" />
diff --git a/L2J_DataPack_BETA/dist/game/data/skillTrees/fishingSkillTree.xml b/L2J_DataPack_BETA/dist/game/data/skillTrees/fishingSkillTree.xml
index a82260a4657d6d6d8fa580e8ea08ccce9bce1ead..baac533d33e27112913002a176292d3558cfec8c 100644
--- a/L2J_DataPack_BETA/dist/game/data/skillTrees/fishingSkillTree.xml
+++ b/L2J_DataPack_BETA/dist/game/data/skillTrees/fishingSkillTree.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skillTrees.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/skillTrees.xsd">
 	<skillTree type="fishingSkillTree">
 		<!-- Confirmed CT2.5 -->
 		<skill skillName="Fishing" skillIdLvl="1312,1" getLevel="1" itemsIdCount="57,1000" learnedByNpc="true" />
diff --git a/L2J_DataPack_BETA/dist/game/data/skillTrees/forgottenSkillTree.xml b/L2J_DataPack_BETA/dist/game/data/skillTrees/forgottenSkillTree.xml
index 448a06b646e2b8a140d9af6b17590571475a2c13..d9654d8a3033fc666fa1edf8d998894dcf331b69 100644
--- a/L2J_DataPack_BETA/dist/game/data/skillTrees/forgottenSkillTree.xml
+++ b/L2J_DataPack_BETA/dist/game/data/skillTrees/forgottenSkillTree.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skillTrees.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/skillTrees.xsd">
 	<!-- Human Fighter -->
 	<skillTree type="classSkillTree" classId="0">
 		<skill skillName="Aura Bird - Falcon" skillIdLvl="841,1" getLevel="75" learnedByFS="true" />
diff --git a/L2J_DataPack_BETA/dist/game/data/skillTrees/highFiveCrossClassSkillTree.xml b/L2J_DataPack_BETA/dist/game/data/skillTrees/highFiveCrossClassSkillTree.xml
index a68117b96d252258ca01e1792146d3f2ce01bcfa..a382a784289ff75fbc1559f0ab94a71571d6e0c4 100644
--- a/L2J_DataPack_BETA/dist/game/data/skillTrees/highFiveCrossClassSkillTree.xml
+++ b/L2J_DataPack_BETA/dist/game/data/skillTrees/highFiveCrossClassSkillTree.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skillTrees.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/skillTrees.xsd">
 	<!-- Gladiator -->
 	<skillTree type="classSkillTree" classId="2">
 		<skill skillName="Rush" skillIdLvl="994,1" getLevel="40" levelUpSp="33000" learnedByNpc="true" />
diff --git a/L2J_DataPack_BETA/dist/game/data/skillTrees/highFiveNewClassSkillTree.xml b/L2J_DataPack_BETA/dist/game/data/skillTrees/highFiveNewClassSkillTree.xml
index 7b16bd25db862bce6d2dbd9892a1256dae18e5fb..c78004fb5f99b4c0a7d1fc96c2b83792b43e8a51 100644
--- a/L2J_DataPack_BETA/dist/game/data/skillTrees/highFiveNewClassSkillTree.xml
+++ b/L2J_DataPack_BETA/dist/game/data/skillTrees/highFiveNewClassSkillTree.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skillTrees.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/skillTrees.xsd">
 	<!-- Gladiator -->
 	<skillTree type="classSkillTree" classId="2">
 		<skill skillName="Sonic Mastery" skillIdLvl="992,1" getLevel="40" levelUpSp="30000" learnedByNpc="true" />
diff --git a/L2J_DataPack_BETA/dist/game/data/skillTrees/pledgeSkillTree.xml b/L2J_DataPack_BETA/dist/game/data/skillTrees/pledgeSkillTree.xml
index a9c6a06ce1bf62e9439e5266f8139b09e2cdf646..266f88fb20450718ae431a26c0d16082b734f584 100644
--- a/L2J_DataPack_BETA/dist/game/data/skillTrees/pledgeSkillTree.xml
+++ b/L2J_DataPack_BETA/dist/game/data/skillTrees/pledgeSkillTree.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skillTrees.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/skillTrees.xsd">
 	<skillTree type="pledgeSkillTree">
 		<!-- Confirmed CT2.5 -->
 		<!-- Clan Skills -->
diff --git a/L2J_DataPack_BETA/dist/game/data/skillTrees/subClassSkillTree.xml b/L2J_DataPack_BETA/dist/game/data/skillTrees/subClassSkillTree.xml
index adb5a777043fb6a52648998cbc2c29582bdd8266..2efab585ff3028ce31896ad79d271facba5c6340 100644
--- a/L2J_DataPack_BETA/dist/game/data/skillTrees/subClassSkillTree.xml
+++ b/L2J_DataPack_BETA/dist/game/data/skillTrees/subClassSkillTree.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skillTrees.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/skillTrees.xsd">
 	<skillTree type="subClassSkillTree">
 		<!-- Confirmed CT2.5 -->
 		<skill skillName="Emergent Ability - Attack" skillIdLvl="631,1" getLevel="1" itemsIdCount="10280,1" subClassLvlNumber="65,1;65,2;65,3" />
diff --git a/L2J_DataPack_BETA/dist/game/data/skillTrees/subPledgeSkillTree.xml b/L2J_DataPack_BETA/dist/game/data/skillTrees/subPledgeSkillTree.xml
index 09d8820b3a29371743c2072e7f3eb1af6a6e96a7..4fee9ea17c75f992af1af2da299872abdf73d6f7 100644
--- a/L2J_DataPack_BETA/dist/game/data/skillTrees/subPledgeSkillTree.xml
+++ b/L2J_DataPack_BETA/dist/game/data/skillTrees/subPledgeSkillTree.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skillTrees.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/skillTrees.xsd">
 	<skillTree type="subPledgeSkillTree">
 		<!-- Confirmed CT2.5 -->
 		<skill skillName="Fire Squad" skillIdLvl="611,1" getLevel="8" levelUpSp="12000" itemsIdCount="9910,8" socialClass="4" />
diff --git a/L2J_DataPack_BETA/dist/game/data/skillTrees/transferSkillTree.xml b/L2J_DataPack_BETA/dist/game/data/skillTrees/transferSkillTree.xml
index 85937c85aeabd447e2cdb86fde1e68f364938168..07b4a04379bcad220eb3a8fde89346f09915902b 100644
--- a/L2J_DataPack_BETA/dist/game/data/skillTrees/transferSkillTree.xml
+++ b/L2J_DataPack_BETA/dist/game/data/skillTrees/transferSkillTree.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skillTrees.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/skillTrees.xsd">
 	<!-- Bishop -->
 	<skillTree type="transferSkillTree" classId="16">
 		<!-- Confirmed CT2.5 -->
diff --git a/L2J_DataPack_BETA/dist/game/data/skillTrees/transformSkillTree.xml b/L2J_DataPack_BETA/dist/game/data/skillTrees/transformSkillTree.xml
index ff4e0a8a22292e8b5f1b5b871bf654f2303e717b..f62dee9735e73e267673b3056d67f9c73b71be53 100644
--- a/L2J_DataPack_BETA/dist/game/data/skillTrees/transformSkillTree.xml
+++ b/L2J_DataPack_BETA/dist/game/data/skillTrees/transformSkillTree.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skillTrees.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/skillTrees.xsd">
 	<skillTree type="transformSkillTree">
 		<!-- Confirmed CT2.5 -->
 		<skill skillName="Transform Onyx Beast" skillIdLvl="617,1" getLevel="50" itemsIdCount="9648,1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/spawnZones/final_emperial_tomb.xml b/L2J_DataPack_BETA/dist/game/data/spawnZones/final_emperial_tomb.xml
index 7104cb8206df13a79c9035427bfb0db454a70cbc..fc5bde488c5e674782f7b8c95b873160e146e078 100644
--- a/L2J_DataPack_BETA/dist/game/data/spawnZones/final_emperial_tomb.xml
+++ b/L2J_DataPack_BETA/dist/game/data/spawnZones/final_emperial_tomb.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="spawnZones.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/spawnZones.xsd">
 	<spawnZones>
 		<zone id="0" minZ="-9220" maxZ="-8920">
 			<point x="-87956" y="-151907" />
diff --git a/L2J_DataPack_BETA/dist/game/data/spawnZones/seed_of_destruction.xml b/L2J_DataPack_BETA/dist/game/data/spawnZones/seed_of_destruction.xml
index c82b348a06d58e598a4424b7f90b95cc8224c2b6..2501c69ff8e7d155a68d03800c585634724350c6 100644
--- a/L2J_DataPack_BETA/dist/game/data/spawnZones/seed_of_destruction.xml
+++ b/L2J_DataPack_BETA/dist/game/data/spawnZones/seed_of_destruction.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="spawnZones.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/spawnZones.xsd">
 	<spawnZones>
 		<zone id="2" minZ="-10178" maxZ="-9978">
 			<point x="-240766" y="219168" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/augmentation/augmentation_jewel_stats1.xml b/L2J_DataPack_BETA/dist/game/data/stats/augmentation/augmentation_jewel_stats1.xml
index 676885270ce08d3dfc29d48c4c624cc6393ae099..b6c2b97dc08c159d69b811b2589309c919bc8cfc 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/augmentation/augmentation_jewel_stats1.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/augmentation/augmentation_jewel_stats1.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="augmentation_stats.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/augmentation_stats.xsd">
 	<stat name="mDef">
 		<table name="#soloValues">2.1 2.2 2.3 2.4 2.5 2.6 2.67 2.7 2.88 3 3.11</table>
 		<table name="#combinedValues">1.1 1.1 1.15 1.2 1.25 1.3 1.33 1.35 1.44 1.5 1.55</table>
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/augmentation/augmentation_jewel_stats2.xml b/L2J_DataPack_BETA/dist/game/data/stats/augmentation/augmentation_jewel_stats2.xml
index 2c4bfddc5dda9c325e6015677a21ee56fad94ff1..f1f8a849e3c64729a503f5f9e80f45a4cb3117cc 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/augmentation/augmentation_jewel_stats2.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/augmentation/augmentation_jewel_stats2.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="augmentation_stats.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/augmentation_stats.xsd">
 	<stat name="mDef">
 		<table name="#soloValues">2.4 2.6 2.4 2.8 3 3 3.1 3.2 3.4 3.5 3.7</table>
 		<table name="#combinedValues">1.2 1.3 1.2 1.4 1.5 1.5 1.55 1.6 1.7 1.75 1.8</table>
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/augmentation/augmentation_jewel_stats3.xml b/L2J_DataPack_BETA/dist/game/data/stats/augmentation/augmentation_jewel_stats3.xml
index 9385ca543d0ba5936cbb92bb2b8b590ac73ae4fd..610890af716a13dd3942a10c3b786b85e2630500 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/augmentation/augmentation_jewel_stats3.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/augmentation/augmentation_jewel_stats3.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="augmentation_stats.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/augmentation_stats.xsd">
 	<stat name="mDef">
 		<table name="#soloValues">3 3.2 3 3.4 3.6 3.7 3.8 3.9 4 4.2 4.3</table>
 		<table name="#combinedValues">1.5 1.6 1.5 1.7 1.8 1.85 1.9 1.95 2 2.1 2.1</table>
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/augmentation/augmentation_jewel_stats4.xml b/L2J_DataPack_BETA/dist/game/data/stats/augmentation/augmentation_jewel_stats4.xml
index b6f88267e80916861c6f9a7c66ba8b7cb43ab576..2fe5c5e8eb39065ed1397a67dc7dabff872c5fa3 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/augmentation/augmentation_jewel_stats4.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/augmentation/augmentation_jewel_stats4.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="augmentation_stats.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/augmentation_stats.xsd">
 	<stat name="mDef">
 		<table name="#soloValues">3.5 3.7 3.5 4 4.2 4.4 4.5 4.5 4.8 5</table>
 		<table name="#combinedValues">1.75 1.85 1.75 2 2.1 2.2 2.25 2.25 2.4 2.5</table>
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/augmentation/augmentation_skillmap.xml b/L2J_DataPack_BETA/dist/game/data/stats/augmentation/augmentation_skillmap.xml
index 0ba14c8c7953ae9a7b28a3025c24ca0554fd351a..ffc4cb81b97e834948a9b10bea9f137b96a8d043 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/augmentation/augmentation_skillmap.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/augmentation/augmentation_skillmap.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="augmentation_skillmap.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/augmentation_skillmap.xsd">
 	<augmentation id="14561"> <!-- Active: Temporarily increases the size of your head. -->
 		<skillId val="3203" /> <!-- Item Skill: Mystery Skill: Active: Increases your head size. -->
 		<skillLevel val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/augmentation/augmentation_stats1.xml b/L2J_DataPack_BETA/dist/game/data/stats/augmentation/augmentation_stats1.xml
index 0c64bed8a7b32a4208151e2bd6e7e22b422a9508..7ecde508c4298dbbad4bd7dc18cd378a2d6d6e43 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/augmentation/augmentation_stats1.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/augmentation/augmentation_stats1.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="augmentation_stats.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/augmentation_stats.xsd">
 	<stat name="pDef">
 		<table name="#soloValues">15.4 16.3 17.3 17.5 18.3 18.1 18.8 18.1 18.7 20.7 20.6 21.4 22.9 23.5 24.1 24.4 24.8 24.5 24.6 26.2 25.7 27.1 28.4 28.9 30.0 30.8 30.8 30.9 30.5 31.6 30.9 32.2 34.0 35.0 35.9 36.3 36.8 36.3 36.4 38.2</table>
 		<table name="#combinedValues">7.7 8.4 8.6 8.7 9.5 9.4 9.4 9.0 9.8 10.9 10.3 10.7 11.7 12.1 12.4 12.6 12.8 12.7 12.8 12.0 12.8 13.5 14.2 14.8 15.3 15.8 15.4 15.4 15.7 16.3 15.4 16.3 17.3 17.5 18.3 18.1 18.8 18.1 18.7 19.6</table>
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/augmentation/augmentation_stats2.xml b/L2J_DataPack_BETA/dist/game/data/stats/augmentation/augmentation_stats2.xml
index 1bd5efd3aaa5c52b33efcbee2ec7804e4d2b352d..95d88db6c19f3730a81d661b08c9f2d249875196 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/augmentation/augmentation_stats2.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/augmentation/augmentation_stats2.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="augmentation_stats.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/augmentation_stats.xsd">
 	<stat name="pDef">
 		<table name="#soloValues">15.4 16.3 17.3 17.5 18.3 18.1 18.8 18.1 18.7 20.7 20.6 21.4 22.9 23.5 24.1 24.4 24.8 24.5 24.6 26.2 25.7 27.1 28.4 28.9 30.0 30.8 30.8 30.9 30.5 31.6 30.9 32.2 34.0 35.0 35.9 36.3 36.8 36.3 36.4 38.2</table>
 		<table name="#combinedValues">7.7 8.4 8.6 8.7 9.5 9.4 9.4 9.0 9.8 10.9 10.3 10.7 11.7 12.1 12.4 12.6 12.8 12.7 12.8 12.0 12.8 13.5 14.2 14.8 15.3 15.8 15.4 15.4 15.7 16.3 15.4 16.3 17.3 17.5 18.3 18.1 18.8 18.1 18.7 19.6</table>
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/augmentation/augmentation_stats3.xml b/L2J_DataPack_BETA/dist/game/data/stats/augmentation/augmentation_stats3.xml
index eef65b4dc3a6de96d0b654224548a418ab35220c..c2bc4b05542fc29515cf6a479ce6062febe4ab1d 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/augmentation/augmentation_stats3.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/augmentation/augmentation_stats3.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="augmentation_stats.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/augmentation_stats.xsd">
 	<stat name="pDef">
 		<table name="#soloValues">10.3 10.7 11.1 11.4 12.4 12.6 12.8 12.7 12.8 14.2 13.9 14.6 14.8 15.5 16.1 16.5 16.2 16.3 16.7 17.4 16.9 18.0 18.5 19.5 19.7 20.5 20.5 19.9 20.6 21.8 20.6 21.4 22.2 23.5 24.1 24.4 24.8 24.5 24.6 25.1</table>
 		<table name="#combinedValues">5.1 5.6 5.5 6.0 6.5 6.3 5.9 6.3 6.8 7.6 7.2 7.3 7.4 8.0 8.0 8.6 8.5 8.1 8.8 8.7 8.7 9.0 9.2 10.1 10.2 10.2 10.2 9.9 10.8 10.9 10.3 10.7 11.1 12.1 12.4 12.6 12.8 12.7 12.8 13.1</table>
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/augmentation/augmentation_stats4.xml b/L2J_DataPack_BETA/dist/game/data/stats/augmentation/augmentation_stats4.xml
index bbd6461116156dbf822f6478dcab48e01d8f0f12..a11db968295389f3c2dcde1cb76483538a8f2df2 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/augmentation/augmentation_stats4.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/augmentation/augmentation_stats4.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="augmentation_stats.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/augmentation_stats.xsd">
 	<stat name="pDef">
 		<table name="#soloValues">10.3 10.7 11.1 11.4 12.4 12.6 12.8 12.7 12.8 14.2 13.9 14.6 14.8 15.5 16.1 16.5 16.2 16.3 16.7 17.4 16.9 18.0 18.5 19.5 19.7 20.5 20.5 19.9 20.6 21.8 20.6 21.4 22.2 23.5 24.1 24.4 24.8 24.5 24.6 25.1</table>
 		<table name="#combinedValues">5.1 5.6 5.5 6.0 6.5 6.3 5.9 6.3 6.8 7.6 7.2 7.3 7.4 8.0 8.0 8.6 8.5 8.1 8.8 8.7 8.7 9.0 9.2 10.1 10.2 10.2 10.2 9.9 10.8 10.9 10.3 10.7 11.1 12.1 12.4 12.6 12.8 12.7 12.8 13.1</table>
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/chars/pcBaseStats.xml b/L2J_DataPack_BETA/dist/game/data/stats/chars/pcBaseStats.xml
index f57d77a9c50c57f151312eb8e32405d618867bb3..e4c53037c9ddf5879608c09af27ffb131f43cacc 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/chars/pcBaseStats.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/chars/pcBaseStats.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<pcBaseStats xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="pcBaseStats.xsd">
+<pcBaseStats xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/pcBaseStats.xsd">
 	<!-- PC's basic weapons and armor stats -->
 	<!-- Base pAtk -->
 	<basePatk classId="0" sex="female" val="4" /> <!-- Female Human Fighter -->
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/chars/pcBreathBonus.xml b/L2J_DataPack_BETA/dist/game/data/stats/chars/pcBreathBonus.xml
index 88c0ff55b08446ef69eb40d1c8b24fc9b75218ca..6db488795a279033ef9ef2f5de242354abc5f999 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/chars/pcBreathBonus.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/chars/pcBreathBonus.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<pcBreathBonus xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="pcBreathBonus.xsd">
+<pcBreathBonus xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/pcBreathBonus.xsd">
 	<breathBonus classId="0" sex="female" val="100" /> <!-- 100% --> <!-- Female Human Fighter -->
 	<breathBonus classId="0" sex="male" val="100" /> <!-- 100% --> <!-- Male Human Fighter -->
 	<breathBonus classId="10" sex="female" val="100" /> <!-- 100% --> <!-- Female Human Mystic -->
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/chars/pcCollision.xml b/L2J_DataPack_BETA/dist/game/data/stats/chars/pcCollision.xml
index deabea34d76a1459509ea5917f071ec8c261d5ae..7a721d0dad5848756e3f074d8c6dd1150021e450 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/chars/pcCollision.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/chars/pcCollision.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<pcCollision xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="pcCollision.xsd">
+<pcCollision xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/pcCollision.xsd">
 	<collision classId="0" sex="female" radius="8" height="23.5" /> <!-- Female Human Fighter -->
 	<collision classId="0" sex="male" radius="9" height="23" /> <!-- Male Human Fighter -->
 	<collision classId="10" sex="female" radius="6.5" height="22.5" /> <!-- Female Human Mystic -->
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/chars/pcKarmaIncrease.xml b/L2J_DataPack_BETA/dist/game/data/stats/chars/pcKarmaIncrease.xml
index e316fedd57ca742e179229ccfc5d52b9c67ea5f6..2e563ac69951871b13edeacfd2ddfae022747356 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/chars/pcKarmaIncrease.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/chars/pcKarmaIncrease.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<pcKarmaIncrease xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="pcKarmaIncrease.xsd">
+<pcKarmaIncrease xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/pcKarmaIncrease.xsd">
 	<increase lvl="1" val="0.772184315" />
 	<increase lvl="2" val="2.069377971" />
 	<increase lvl="3" val="2.315085083" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/chars/pcKarmaIncreaseConstant.xml b/L2J_DataPack_BETA/dist/game/data/stats/chars/pcKarmaIncreaseConstant.xml
index 79f1e7861b33551ee05b560d7302de344e8d85f8..d10c5a29061c57a7f5c9acfe6052b54908d60330 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/chars/pcKarmaIncreaseConstant.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/chars/pcKarmaIncreaseConstant.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<pcKarmaIncreaseConstant xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="pcKarmaIncreaseConstant.xsd">
+<pcKarmaIncreaseConstant xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/pcKarmaIncreaseConstant.xsd">
 	<penaltyStartKarma val="0" />
 	<penaltyDurationDefault val="1" />
 	<penaltyDurationIncrease val="0.5" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/chars/pcSafeFallHeight.xml b/L2J_DataPack_BETA/dist/game/data/stats/chars/pcSafeFallHeight.xml
index 0ec8edb1b8aff879b941abdcc755f2413ca761a9..aa0a8f169a26ff533ee4218941a0cf4c0cb43658 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/chars/pcSafeFallHeight.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/chars/pcSafeFallHeight.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<pcSafeFallHeight xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="pcSafeFallHeight.xsd">
+<pcSafeFallHeight xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/pcSafeFallHeight.xsd">
 	<safeFallHeight classId="0" sex="female" val="270" /> <!-- Female Human Fighter -->
 	<safeFallHeight classId="0" sex="male" val="250" /> <!-- Male Human Fighter -->
 	<safeFallHeight classId="10" sex="female" val="220" /> <!-- Female Human Mystic -->
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/experience.xml b/L2J_DataPack_BETA/dist/game/data/stats/experience.xml
index 0d1d244278ee0dfd9e6249b6bcfe3dea44cf5f0b..b37bd010eb9e691e5e1eaaf20de1c8fb5d7785f4 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/experience.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/experience.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<table maxLevel="85" maxPetLevel="86" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="experience.xsd">
+<table maxLevel="85" maxPetLevel="86" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/experience.xsd">
 	<experience level="1" tolevel="0" />
 	<experience level="2" tolevel="68" />
 	<experience level="3" tolevel="363" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/hitConditionBonus.xml b/L2J_DataPack_BETA/dist/game/data/stats/hitConditionBonus.xml
index e77cafd2c45b0ed11c874d1c655e9c8ba570410f..808a50ac39f40840a8a012f020ec725c2017e00c 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/hitConditionBonus.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/hitConditionBonus.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<hitConditionBonus xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="hitConditionBonus.xsd">
+<hitConditionBonus xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/hitConditionBonus.xsd">
 	<back val="10" /> <!-- 10% attacking to enemy back -->
 	<dark val="-10" /> <!-- -10% attacking when night -->
 	<front val="0" /> <!-- 0% attacking to enemy front -->
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/00000-00099.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/00000-00099.xml
index 610c0ca46032950e92350a901a4cde7588979440..93a69393eafcd38371da88bc6f7693f4f33e5220 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/00000-00099.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/00000-00099.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="1" type="Weapon" name="Short Sword">
 		<set name="icon" val="icon.weapon_small_sword_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/00100-00199.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/00100-00199.xml
index b1fb602e448254cbd034be575fc0519d2041c719..93611e5e0a131cba71808a1cbdeb99248e88e16b 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/00100-00199.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/00100-00199.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="100" type="Weapon" name="Voodoo Doll">
 		<set name="icon" val="icon.weapon_voodoo_doll_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/00200-00299.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/00200-00299.xml
index 3ed1ebc6e7fa7a4ef422a82a4c6be3e455a44b2e..974da6c221c395dba791cdac0f297c5dadac58b3 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/00200-00299.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/00200-00299.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="200" type="Weapon" name="Sage's Staff">
 		<set name="icon" val="icon.weapon_sages_staff_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/00300-00399.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/00300-00399.xml
index 1c5c99e57936ff62839b557ccae82905df240c43..c69a002c612b5e849a822d1dfe1254be693d9eb8 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/00300-00399.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/00300-00399.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="300" type="Weapon" name="Great Axe">
 		<set name="icon" val="icon.weapon_great_axe_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/00400-00499.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/00400-00499.xml
index 6ef9c057c9476c9090fd77e281034b97a1c7563a..7c7005d8dbdba3c765f3c4ea6cd2811e2cf17615 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/00400-00499.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/00400-00499.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="400" type="Armor" name="Theca Leather Armor">
 		<set name="icon" val="icon.armor_t63_u_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/00500-00599.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/00500-00599.xml
index 4a5027458fb8c4e2bf3c384b852076891af90e41..fca49812e6b3db14ffbb0fdc90887f116ea44578 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/00500-00599.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/00500-00599.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="500" type="Armor" name="Great Helmet">
 		<set name="icon" val="icon.armor_helmet_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/00600-00699.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/00600-00699.xml
index f60e6caf9a59168690002e37760cef7f7291c189..04101dcd50c1e27a6ed8208d1f510ac8f1934610 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/00600-00699.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/00600-00699.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="600" type="Armor" name="Sealed Avadon Boots">
 		<set name="icon" val="icon.armor_t66_b_i02" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/00700-00799.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/00700-00799.xml
index 81c462725d835f56ae6c9ae6a7661df6cd6c0156..6488f0572f5ff4ca4d6d01ab36322313aec0e508 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/00700-00799.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/00700-00799.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="700" type="EtcItem" name="_">
 		<set name="icon" val="icon.item_normal05" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/00800-00899.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/00800-00899.xml
index d8a70474e372cff9913db78ade615ec385319962..6d5f09f39cd9082372ca84f393d8577d0458e1c0 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/00800-00899.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/00800-00899.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="800" type="EtcItem" name="Tome of Nassen">
 		<set name="icon" val="icon.item_normal07" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/00900-00999.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/00900-00999.xml
index 0663f83893170aa81dedc4661edb2bcdb1903fb8..36f3d3a4c8794832a20f226718f8b7c4a1fc277b 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/00900-00999.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/00900-00999.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="900" type="Armor" name="Ring of Grace">
 		<set name="icon" val="icon.accessary_ring_of_grace_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/01000-01099.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/01000-01099.xml
index 29c9e46901c92db64bce3487c4b3f46830714acf..b259b12ae92cb1068e905f682abf845fae87eec7 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/01000-01099.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/01000-01099.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="1000" type="Armor" name="Book of Aklantoth - Part 3">
 		<set name="icon" val="icon.item_normal07" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/01100-01199.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/01100-01199.xml
index 459e05e71addebd6b0f88a5671a254a8e8eda8a4..09ef7abf47d9ad92b02b050efd88a4fb7f7bca70 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/01100-01199.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/01100-01199.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="1100" type="Armor" name="Cotton Tunic">
 		<set name="icon" val="icon.armor_t50_u_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/01200-01299.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/01200-01299.xml
index 293bb8ac1ffefc6a73f13fbe893cb076e7a37f46..6e72ceac5e9c322d7690a57872c0b27230d0195a 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/01200-01299.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/01200-01299.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="1200" type="EtcItem" name="Lionel's Covenant">
 		<set name="icon" val="icon.etc_letter_red_i00" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/01300-01399.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/01300-01399.xml
index e9282bb2f2ffc69b9fc17f035388bde6d26a1635..235af48e91e6962f6ddbeeea247a1e94f6dbcd7e 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/01300-01399.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/01300-01399.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="1300" type="Weapon" name="Apprentice's Rod">
 		<set name="icon" val="icon.weapon_apprentices_rod_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/01400-01499.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/01400-01499.xml
index d578f6c974ac9c6c17e749b63c6f8b3af86dddad..565525b94c232d0f571e6d8e2e668d122275f048 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/01400-01499.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/01400-01499.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="1400" type="EtcItem" name="Spellbook: Surrender To Fire">
 		<set name="icon" val="icon.etc_spell_books_element_i00" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/01500-01599.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/01500-01599.xml
index 385f2315fcec4a4140099998017c65c26d5a8f6b..d022fbc8523d22bd567d84780205d62e2470ae00 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/01500-01599.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/01500-01599.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="1500" type="EtcItem" name="Totem of Hestui">
 		<set name="icon" val="icon.etc_totem_black_i00" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/01600-01699.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/01600-01699.xml
index 6e567e5b72491d4e05651757b987f7a4f2cc3357..36637b83234b74f644b46d770980d4811aa7b43a 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/01600-01699.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/01600-01699.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="1600" type="EtcItem" name="Kasha Bear Claw">
 		<set name="icon" val="icon.etc_claw_i00" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/01700-01799.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/01700-01799.xml
index 2240a5d508d66c245ac4f442917e9512d28b7722..65e30226157e409544c4294ea9e5505f3286b71a 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/01700-01799.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/01700-01799.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="1700" type="EtcItem" name="(Not In Use) Oriharukon">
 		<set name="icon" val="icon.etc_squares_wood_i00" />
 		<set name="etcitem_type" val="material" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/01800-01899.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/01800-01899.xml
index d1a848ae4439c0e273229ec014614045d0526ab4..cb81bd686ea83d69f61a17ba93d137001796c76a 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/01800-01899.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/01800-01899.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="1800" type="EtcItem" name="Recipe: Piece Bone Breastplate">
 		<set name="icon" val="icon.etc_recipe_white_i00" />
 		<set name="default_action" val="recipe" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/01900-01999.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/01900-01999.xml
index 8d93de2b07894b86ef558b766346dcacf80076e0..c07f22ab3d2f9a0485802508201ddf8222ec7f7a 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/01900-01999.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/01900-01999.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="1900" type="EtcItem" name="Enchanted Necklace Chain">
 		<set name="icon" val="icon.etc_jewel_box_i00" />
 		<set name="etcitem_type" val="material" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/02000-02099.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/02000-02099.xml
index 2fd4ca4c3e748ad9cc832346c5f65eca2773cf17..0bc7154a1b3c0bab1e95e0b267743731506527e2 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/02000-02099.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/02000-02099.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="2000" type="EtcItem" name="Tallum Helm Design">
 		<set name="icon" val="icon.etc_pouch_yellow_i00" />
 		<set name="etcitem_type" val="material" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/02100-02199.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/02100-02199.xml
index 06ea90feade1a53737d47d0f7d94aea0e985c4ca..e9d9dd6466cbd0aedde8ed5ffc9b7fdc9a757480 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/02100-02199.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/02100-02199.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="2100" type="EtcItem" name="Paradia Staff Head">
 		<set name="icon" val="icon.etc_squares_gray_i00" />
 		<set name="etcitem_type" val="material" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/02200-02299.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/02200-02299.xml
index eabb6ff009bb390d9ae639230c6956bcb0bcd926..668f51ac2c944b5ee3284d8525b78f55404c0f04 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/02200-02299.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/02200-02299.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="2200" type="EtcItem" name="Recipe: Chain Helmet">
 		<set name="icon" val="icon.etc_recipe_blue_i00" />
 		<set name="default_action" val="recipe" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/02300-02399.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/02300-02399.xml
index 8d758df8a0ded92309e8428adb075083ac2e5f63..d984c9ae5cbc4be38c860d2ad49e5b2a862ebafb 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/02300-02399.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/02300-02399.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="2300" type="EtcItem" name="Recipe: Scythe">
 		<set name="icon" val="icon.etc_recipe_yellow_i00" />
 		<set name="default_action" val="recipe" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/02400-02499.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/02400-02499.xml
index c508f0c6aaef0420b02644b6acbef5027469674c..22265b7fbf6df46906cb8017ee5ce17ffc3d6f8a 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/02400-02499.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/02400-02499.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="2400" type="Armor" name="Tallum Tunic">
 		<set name="icon" val="icon.armor_t79_u_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/02500-02599.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/02500-02599.xml
index 563c9699cb238c2423868d739875ca1312d6fea1..e43247bae15d8d911b513a51b08810682633f3e7 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/02500-02599.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/02500-02599.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="2500" type="Weapon" name="Dark Legion's Edge">
 		<set name="icon" val="icon.weapon_dark_legions_edge_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/02600-02699.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/02600-02699.xml
index 85ddba1cb6fe048e19f3c5d2888935a7091fb9c7..618e013e9d6a6c19f942d822faecc21b01d33fd3 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/02600-02699.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/02600-02699.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="2600" type="Weapon" name="Raid Sword*Caliburs">
 		<set name="icon" val="icon.weapon_dual_sword_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/02700-02799.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/02700-02799.xml
index 762043be9f9c012a292f86a58d8638bae7031eaf..d7c2e3a630965bebbd26a459698b1086d49ec8b9 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/02700-02799.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/02700-02799.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="2700" type="EtcItem" name="Dieter's Key">
 		<set name="icon" val="icon.etc_key_i00" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/02800-02899.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/02800-02899.xml
index 84081a6a337bda6e634e6e960db12038d1c75375..f54eacd2178b7f62765b424381e66ea3812288ae 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/02800-02899.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/02800-02899.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="2800" type="EtcItem" name="Jax's Diary">
 		<set name="icon" val="icon.etc_spellbook_blue_i00" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/02900-02999.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/02900-02999.xml
index 4a663340c1de926e8c82578548c58daa20487bb4..80806fd7fcfaa1aa69644f9a48952428e8b7f1e2 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/02900-02999.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/02900-02999.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="2900" type="EtcItem" name="Hermodt's Thigh Bone">
 		<set name="icon" val="icon.etc_piece_bone_red_i00" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/03000-03099.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/03000-03099.xml
index 4ccff3f1736f66d6c50154c4d4aadc31008e9f2e..4fa329b8c42d152c3cabe9deb3060c3e0c18e0a7 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/03000-03099.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/03000-03099.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="3000" type="EtcItem" name="Recipe: Dwarven Chain Shield">
 		<set name="icon" val="icon.etc_recipe_yellow_i00" />
 		<set name="default_action" val="recipe" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/03100-03199.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/03100-03199.xml
index faf0f20ee5426db01bf716b3e9f7547c97d662dc..49a5b3a6890151276e706163b6ac869536f280d3 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/03100-03199.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/03100-03199.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="3100" type="EtcItem" name="Spellbook: Guidance">
 		<set name="icon" val="icon.etc_spell_books_assistance_i00" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/03200-03299.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/03200-03299.xml
index a416e13a55a60c153504b3af41739557eddfb956..254226ae7617f1e0f01e3cc529fac617aedda6c4 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/03200-03299.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/03200-03299.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="3200" type="EtcItem" name="Black Willow Leaf">
 		<set name="icon" val="icon.etc_leaf_gold_i00" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/03300-03399.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/03300-03399.xml
index 000e854c989b9924b64558dd28039163ba170176..e19bcfdb0aa97c22deca64f23b342caf1d212302 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/03300-03399.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/03300-03399.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="3300" type="EtcItem" name="Talisman of Kadesh">
 		<set name="icon" val="icon.accessary_red_cresent_earing_i00" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/03400-03499.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/03400-03499.xml
index 7f043717eb3ef55fd89209263243b993c16aaeae..e831e2195b2cc90898c5249f864ddea195c2aaa9 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/03400-03499.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/03400-03499.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="3400" type="EtcItem" name="Huge Orc Fang">
 		<set name="icon" val="icon.etc_horn_i00" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/03500-03599.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/03500-03599.xml
index aaf05859387a20932e2a16f1ffcf13a0644ae93a..171ff51590e28b52624b45bc9039a13d1f5dd44e 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/03500-03599.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/03500-03599.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="3500" type="EtcItem" name="Dragonflute of Wind">
 		<set name="icon" val="icon.etc_flute_i00" />
 		<set name="default_action" val="skill_maintain" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/03600-03699.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/03600-03699.xml
index 441b5750d8c26cf384803eae396c652417d1a6e2..709b9170e598aee358bdb2faf3e66dca49845819 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/03600-03699.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/03600-03699.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="3600" type="EtcItem" name="Confirmation Document 12">
 		<set name="icon" val="icon.etc_piece_of_paper_white_i00" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/03700-03799.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/03700-03799.xml
index 191e25329440294154fa9415c1d56eb54cb764e7..dc49c5dda922593595ce45b1660d1519f412eccd 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/03700-03799.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/03700-03799.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="3700" type="EtcItem" name="Blood Crystal: Purity 3">
 		<set name="icon" val="icon.etc_jewel_red_i00" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/03800-03899.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/03800-03899.xml
index 48dda9d3ee50acb7fa716feda476c2ce47b8018d..c1cdc2cc4aafc95d192a1d80dcb3a70b303dbbf0 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/03800-03899.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/03800-03899.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="3800" type="EtcItem" name="Vanor Silenos Mane">
 		<set name="icon" val="icon.etc_mane_i00" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/03900-03999.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/03900-03999.xml
index cffefbd310eefac414966285c24eece8ee40564a..b69a460dd33e28384719cd961efe996f9d9e16f5 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/03900-03999.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/03900-03999.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="3900" type="Armor" name="Wolf's Luxury Plate">
 		<set name="icon" val="icon.etc_pet_armor_i02" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/04000-04099.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/04000-04099.xml
index d1aa377a60f4864a77471d4d17e90aaf21496e54..235be1ebef189738f68f8d11ba563f928d0c4f95 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/04000-04099.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/04000-04099.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="4000" type="EtcItem" name="Mercenary Posting Ticket (Spear/Stationary)">
 		<set name="icon" val="icon.mticket_pole_fix_i00" />
 		<set name="etcitem_type" val="castle_guard" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/04100-04199.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/04100-04199.xml
index ed476490f1958745b2d03847b23bd3ede2d6a785..08fbceb15f14b5664b8343ec7e36391ae1f24cbc 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/04100-04199.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/04100-04199.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="4100" type="EtcItem" name="Sealed Zubei's Gauntlets Part">
 		<set name="icon" val="icon.etc_plate_silver_i00" />
 		<set name="etcitem_type" val="material" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/04200-04299.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/04200-04299.xml
index 362f94bd1155c7a3dab22c1220c3fc985c9268c0..035eb36798401799ac14329ea2c7c330055e76d8 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/04200-04299.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/04200-04299.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="4200" type="EtcItem" name="Spellbook: Restore Life">
 		<set name="icon" val="icon.etc_spell_books_assistance_i00" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/04300-04399.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/04300-04399.xml
index 6eed0fefe72123c8cf398774555dd0e1e3b7023d..10b25a46f48f623dfa68267932c02040e2aca713 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/04300-04399.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/04300-04399.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="4300" type="EtcItem" name="Operation Document - 2/10">
 		<set name="icon" val="icon.etc_piece_of_paper_white_i00" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/04400-04499.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/04400-04499.xml
index d3e306bf9ed7ffdac143ebd2486c7aaac01384ed..d3c83a57c8a113d63dedcf9ce65f8a5604d35d48 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/04400-04499.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/04400-04499.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="4400" type="EtcItem" name="White Fabric">
 		<set name="icon" val="icon.etc_piece_of_cloth_white_i00" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/04500-04599.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/04500-04599.xml
index 8574c24fa4c4b0b900c7797e1840056d88fe4700..d14d917193ae526a9a00dd54937be4108abd5ff2 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/04500-04599.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/04500-04599.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="4500" type="EtcItem" name="Greater Dye of INT (Int+1 Wit-2)">
 		<set name="icon" val="icon.etc_int_hena_i01" />
 		<set name="etcitem_type" val="dye" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/04600-04699.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/04600-04699.xml
index 13887b38dbade203d8b1120b81e31cda44e5d9f9..0c7e0b022b306338f9d687ca414c7cb546bfe5e4 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/04600-04699.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/04600-04699.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="4600" type="EtcItem" name="Greater Dye of WIT (Wit+2 Men-2)">
 		<set name="icon" val="icon.etc_wit_hena_i02" />
 		<set name="etcitem_type" val="dye" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/04700-04799.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/04700-04799.xml
index 8449441436dd3c59ca6c0d98d70636b4996572dc..884da4cdc087b41ade60f4e49b830aca1edd0117 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/04700-04799.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/04700-04799.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="4700" type="Weapon" name="Sword of Delusion - Health">
 		<set name="icon" val="icon.weapon_sword_of_delusion_i01" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/04800-04899.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/04800-04899.xml
index 0df51ae51bbef54336e2651be96de0b8306e4c86..436a93a271a5f34c2ac7c3862599790f36c422bb 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/04800-04899.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/04800-04899.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="4800" type="Weapon" name="Knuckle Duster - Haste">
 		<set name="icon" val="icon.weapon_knuckle_dust_i01" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/04900-04999.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/04900-04999.xml
index 50efe78cc4d92fc7a8c04ddbf2d4f19ab4bcfd71..9b40f8595f726e182f9505ad6e3cc18ee4c0ac96 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/04900-04999.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/04900-04999.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="4900" type="Weapon" name="Staff of Evil Spirits - Magic Focus">
 		<set name="icon" val="icon.weapon_staff_of_evil_sprit_i01" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/05000-05099.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/05000-05099.xml
index 26b4b37481926d6354c47717ec67c9bb815bc155..c9bff0995fc2db76ee490e9e1440f1666f0b64c5 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/05000-05099.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/05000-05099.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="5000" type="EtcItem" name="Recipe: Sword of Damascus (60%)">
 		<set name="icon" val="icon.etc_recipe_red_i00" />
 		<set name="default_action" val="recipe" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/05100-05199.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/05100-05199.xml
index 0d025e2c96efd7a01275687dce4b803f75b79b0d..4ebb109877c991580920bc298d67d235c2cf03fa 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/05100-05199.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/05100-05199.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="5100" type="EtcItem" name="Mature Desert Coda">
 		<set name="icon" val="icon.etc_coda_i05" />
 		<set name="etcitem_type" val="maturecrop" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/05200-05299.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/05200-05299.xml
index 94ca810595fad1fc157a7b8ce3ca43c91147ed30..ef538078fe658cbcd359b0e9d2ee251f1ff4bfcc 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/05200-05299.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/05200-05299.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="5200" type="EtcItem" name="Chest Key - Grade 5">
 		<set name="icon" val="icon.etc_key_i00" />
 		<set name="default_action" val="skill_reduce" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/05300-05399.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/05300-05399.xml
index c00c46627b23f18b68827137c1212a3e4082ac0f..bc4007028b0d7986d050b482429a1dc529dd202d 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/05300-05399.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/05300-05399.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="5300" type="Armor" name="Sealed Boots of Underworld">
 		<set name="icon" val="icon.armor_t10_b_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/05400-05499.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/05400-05499.xml
index 6da91a854b93e82e5718970ea301b86332cad2ae..601c09bfc1e78769ffb45285099ef180a2f93fdc 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/05400-05499.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/05400-05499.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="5400" type="EtcItem" name="Recipe: Sealed Gloves of Black Ore(60%)">
 		<set name="icon" val="icon.etc_recipe_violet_i00" />
 		<set name="default_action" val="recipe" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/05500-05599.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/05500-05599.xml
index 95149167033d1fa3ee6addebd17782766f87bf90..c3aec916f8a1a8b090187e512a4e5b039616c011 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/05500-05599.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/05500-05599.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="5500" type="EtcItem" name="Sealed Red Flame Boots Lining">
 		<set name="icon" val="icon.etc_piece_of_cloth_black_i00" />
 		<set name="etcitem_type" val="material" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/05600-05699.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/05600-05699.xml
index a6041a38f36b3ee98c34c28356c048194b425a35..541b80603e47214a2c27e9d281d507f10d5e75f7 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/05600-05699.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/05600-05699.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="5600" type="Weapon" name="Meteor Shower - Critical Bleed">
 		<set name="icon" val="icon.weapon_meteor_shower_i01" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/05700-05799.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/05700-05799.xml
index 7ea7a7c0d7f5ca89859e4cbd515743395fad97bf..30953418eb998510038e0a6df45ccdc60402e1d2 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/05700-05799.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/05700-05799.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="5700" type="EtcItem" name="Seed: Alternative Great Cobol">
 		<set name="icon" val="icon.etc_cobol_seed_i00" />
 		<set name="default_action" val="seed" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/05800-05899.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/05800-05899.xml
index af641f8241fd12c523dbb218ffc75692fcd9584d..9d275ea3a677310fd480753c013996c5b420a77f 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/05800-05899.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/05800-05899.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="5800" type="Weapon" name="Nephilim Lord">
 		<set name="icon" val="icon.weapon_monster_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/05900-05999.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/05900-05999.xml
index 5cfe956ea6f977e59db764640df84e13a46b6ea1..00abd033b8125c05ed69feada822917c8ba5ae47 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/05900-05999.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/05900-05999.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="5900" type="EtcItem" name="Coin Collecting Album">
 		<set name="icon" val="icon.etc_magic_book_black_i00" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/06000-06099.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/06000-06099.xml
index 4ba6251e83a8aec1370f70306cad2a02646b61a4..44d51abd3fa3336077d8a864f9f051390907d49b 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/06000-06099.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/06000-06099.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="6000" type="EtcItem" name="Blueprint: Tower of Insolence, 12th Floor">
 		<set name="icon" val="icon.etc_letter_blue_i00" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/06100-06199.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/06100-06199.xml
index 422c62b2d84648c96afd066755162c3c8a158d8d..d52cf168a377ed7d14c457d1c18ac86d4d4b5b0f 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/06100-06199.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/06100-06199.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="6100" type="EtcItem" name="Trash - Trash">
 		<set name="icon" val="icon.mticket_bow_fix_i00" />
 		<set name="etcitem_type" val="castle_guard" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/06200-06299.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/06200-06299.xml
index 2baa5ce845390938a281e807c5164e79ebd609fc..ad85a3f47d689fba8f8514ed515b03f07ec11669 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/06200-06299.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/06200-06299.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="6200" type="EtcItem" name="Greater Recruit Posting Ticket (Sword/Mobile)">
 		<set name="icon" val="icon.mticket_sword_move_i00" />
 		<set name="etcitem_type" val="castle_guard" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/06300-06399.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/06300-06399.xml
index acb304404420331bdd4051518edca54dc08f2512..54cbbdb3a6ca946303f4a1d0e5ad3e6ef57a7123 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/06300-06399.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/06300-06399.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="6300" type="EtcItem" name="Nephilim Shaman Posting Ticket">
 		<set name="icon" val="icon.mticket_wizard_move_i00" />
 		<set name="etcitem_type" val="castle_guard" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/06400-06499.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/06400-06499.xml
index 9e9356692aeb09b7e34586ff3a6d1ae6784c8190..cbd7cf03f013d3dbc370cabe9232c072e6808d22 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/06400-06499.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/06400-06499.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="6400" type="EtcItem" name="Badge of Hyena">
 		<set name="icon" val="icon.etc_paper_red_i00" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/06500-06599.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/06500-06599.xml
index 82891c38caf6ac0ccd0a5191ff8e52dfa12bfe78..00e9107c93ee5f88017a9d859d6ccea61b3d837b 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/06500-06599.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/06500-06599.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="6500" type="EtcItem" name="Big Blue Treasure Chest">
 		<set name="icon" val="icon.etc_treasure_box_i01" />
 		<set name="default_action" val="capsule" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/06600-06699.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/06600-06699.xml
index 9c49cc9cfae00f9a559f7e7fcfb86b124c296643..11a7a9f6e2f7298768cc1a3b26fabf9065712698 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/06600-06699.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/06600-06699.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="6600" type="Weapon" name="Saint Spear - Guidance">
 		<set name="icon" val="icon.weapon_saint_spear_i01" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/06700-06799.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/06700-06799.xml
index adaec87b8c29d183de02cb8fd0cb247bd417bb19..0317214c3977c6035e49ccad5b0e419c8c6bc7bf 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/06700-06799.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/06700-06799.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="6700" type="EtcItem" name="Sealed Tateossian Necklace Chain">
 		<set name="icon" val="icon.etc_jewel_box_i00" />
 		<set name="etcitem_type" val="material" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/06800-06899.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/06800-06899.xml
index 15ef1d835d9eb5249345bd85ccf13382a167dc4f..fd245fad31bec6d71e2b1cb7b97df706a1a81534 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/06800-06899.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/06800-06899.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="6800" type="EtcItem" name="Greater Mercenary Posting Ticket (Cleric/Mobile)">
 		<set name="icon" val="icon.mticket_cleric_move_i00" />
 		<set name="etcitem_type" val="castle_guard" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/06900-06999.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/06900-06999.xml
index fc1e2dbf7e01d882ae19d84a46f7a85a3b17c817..37dba54c1a7be0bee194d207d0b24d3e59e0040b 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/06900-06999.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/06900-06999.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="6900" type="EtcItem" name="Recipe: Arcana Mace (100%)">
 		<set name="icon" val="icon.etc_recipe_black_i00" />
 		<set name="default_action" val="recipe" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/07000-07099.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/07000-07099.xml
index 161a2217d90394f855672a65bd2aef9d125050fb..173cfa3388e66e70cd5d01aed67c9aa4d2cd0663 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/07000-07099.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/07000-07099.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="7000" type="EtcItem" name="Recipe: Greater Dye of WIT(Wit+3 Int-3) (100%)">
 		<set name="icon" val="icon.etc_recipe_green_i00" />
 		<set name="default_action" val="recipe" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/07100-07199.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/07100-07199.xml
index eb0f8778dd61b05176fc55f27ed413f4208ce4bb..c20fcae4a7475d32d156ba5df3f9cb801d031cae 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/07100-07199.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/07100-07199.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="7100" type="EtcItem" name="Importance of Strain">
 		<set name="icon" val="icon.etc_spellbook_blue_i00" />
 		<set name="default_action" val="show_html" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/07200-07299.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/07200-07299.xml
index 9923d8b750ec6bca3aef0a371568c31102c9534a..514a154903e1eeb04f7fdafffaf5f615b01a7a66 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/07200-07299.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/07200-07299.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="7200" type="EtcItem" name="Buffalo Meat">
 		<set name="icon" val="icon.etc_meat_i00" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/07300-07399.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/07300-07399.xml
index 7f3eaff0509fdddb9396b9ce04f6725d744ef7e6..51fd20f100d808218bfcec4b7483645ddb718575 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/07300-07399.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/07300-07399.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="7300" type="EtcItem" name="Resonance Amulet - 2">
 		<set name="icon" val="icon.etc_resonance_amulet_i00" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/07400-07499.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/07400-07499.xml
index bbc2e79b4ee2c616d9100530ff06101cc8a66997..5c083118f736fafb454da34192be07699ac094e6 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/07400-07499.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/07400-07499.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="7400" type="EtcItem" name="Resonance Amulet - 5">
 		<set name="icon" val="icon.etc_resonance_amulet_i00" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/07500-07599.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/07500-07599.xml
index 51b1bd4635221aed5544f3ff1f4e8134c3e3566b..36348f8c85bf20c87f6c843c230c5ae708df0158 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/07500-07599.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/07500-07599.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="7500" type="EtcItem" name="Halisha's Mark">
 		<set name="icon" val="icon.etc_eyeball_i00" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/07600-07699.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/07600-07699.xml
index 9a96d73bc21de58a9beb07bbc94059f9c657ca3a..dd55c7baeb0bc13d11bd4a8f39b27940f433a650 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/07600-07699.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/07600-07699.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="7600" type="EtcItem" name="Worn Tarot Card - Wealth">
 		<set name="icon" val="icon.etc_piece_of_report_i00" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/07700-07799.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/07700-07799.xml
index bb669b5a9cf0d6bf6b54ee6164a8d10ff1b916c6..31c434966951af9155039cd70bd2a11c71d10415 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/07700-07799.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/07700-07799.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="7700" type="EtcItem" name="Recipe: Daisy Hairpin (100%)">
 		<set name="icon" val="icon.etc_recipe_green_i00" />
 		<set name="default_action" val="recipe" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/07800-07899.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/07800-07899.xml
index ff6a7b152e9d7db0a9a9d43c56d2b05ba86c2ae7..b7b8a01178f5c10096dfa12691982acf553012ff 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/07800-07899.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/07800-07899.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="7800" type="EtcItem" name="Small Black Fat Fish - For Beginners">
 		<set name="icon" val="icon.etc_bream_i05" />
 		<set name="default_action" val="capsule" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/07900-07999.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/07900-07999.xml
index 9425626bf2a98be52c3f1dd0eb86aea3f9ef035d..844c5fb36196d1a4cb3910c6a130443d8a0f82bd 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/07900-07999.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/07900-07999.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="7900" type="Weapon" name="Ice Storm Hammer">
 		<set name="icon" val="icon.weapon_ice_storm_hammer_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/08000-08099.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/08000-08099.xml
index ec90d30dc689dfc68f008d0da18a117572c6faef..c94bb437c358e13d82e57cee03ad0d5dd75bf7ac 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/08000-08099.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/08000-08099.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="8000" type="EtcItem" name="Dawn Mercenary Posting Ticket (Bow/Stationary)">
 		<set name="icon" val="icon.mticket_bow_fix_i00" />
 		<set name="etcitem_type" val="castle_guard" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/08100-08199.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/08100-08199.xml
index 1aef53eddd128cb2a075b981f14d537fe0b86a98..dfd15842fbefb7d42db5f5a1ac38640bdf3adda3 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/08100-08199.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/08100-08199.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="8100" type="EtcItem" name="Destroyed Golem Shards">
 		<set name="icon" val="icon.etc_debris_i00" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/08200-08299.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/08200-08299.xml
index 63b8fe491b53a2ae8426a461ca2a42161106285c..73f3534bc6ee43a777eda6e413a689ee0cf32ced 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/08200-08299.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/08200-08299.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="8200" type="EtcItem" name="Fisherman's Potion - White">
 		<set name="icon" val="icon.etc_oblivion_white_i00" />
 		<set name="default_action" val="skill_reduce" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/08300-08399.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/08300-08399.xml
index d25473fddd57efc29dbe78040e1dfea6d2f14c0d..394c17df27b6a062e9dda6e94e4b52a389dd4da2 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/08300-08399.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/08300-08399.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="8300" type="EtcItem" name="Recipe: Infernal Master (60%)">
 		<set name="icon" val="icon.etc_recipe_violet_i00" />
 		<set name="default_action" val="recipe" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/08400-08499.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/08400-08499.xml
index 8ed64942dc59b201452dbe37ab6c7c4fefa86131..03820be12fc662abaf53ac1cdb31c0464fd89092 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/08400-08499.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/08400-08499.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="8400" type="EtcItem" name="Spellbook: Turn Undead">
 		<set name="icon" val="icon.etc_spell_books_assistance_i00" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/08500-08599.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/08500-08599.xml
index 9b655957bf09249ba8a68a587544289d1252b437..b156b01e5605cd99f4380e1809d9b426a1aa5ba4 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/08500-08599.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/08500-08599.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="8500" type="EtcItem" name="Aden's Luminous Lure">
 		<set name="icon" val="icon.etc_gludio_fish_lure_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/08600-08699.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/08600-08699.xml
index 9393f59be22be84527881d600e69eeaecab6d812..48c3140639d8671e628cf42b5bf2679bbd87e09a 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/08600-08699.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/08600-08699.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="8600" type="EtcItem" name="Herb of Life">
 		<set name="immediate_effect" val="1" />
 		<set name="ex_immediate_effect" val="true" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/08700-08799.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/08700-08799.xml
index 567982380d2e9778797fd2370373ad06c0b31a7a..dca7c9a895642db31b5f2ff50105530efea3cfe6 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/08700-08799.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/08700-08799.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="8700" type="EtcItem" name="Recipe: Tiphon's Spear (60%)">
 		<set name="icon" val="icon.etc_recipe_violet_i00" />
 		<set name="default_action" val="recipe" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/08800-08899.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/08800-08899.xml
index feae4df87266a13fc5eed73429fa002877204a15..9ce1a785f0d1e76c9bf34e08980a15a35fde28f4 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/08800-08899.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/08800-08899.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="8800" type="Weapon" name="Naga Storm - Focus">
 		<set name="icon" val="icon.weapon_naga_storm_i01" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/08900-08999.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/08900-08999.xml
index 99c30e7e7a1404e8d75e181029363644a690ebff..f48b95638fee8931229a7d385b46d09e8d6cc9f8 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/08900-08999.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/08900-08999.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="8900" type="EtcItem" name="Ancient Spellbook: Cyclone">
 		<set name="icon" val="icon.etc_spell_books_element_i00" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/09000-09099.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/09000-09099.xml
index 7a27877178e2ca5669707cc3a3efc1fb852505b7..161ca1dce8b4c3afd01157102651cf45fb712d6a 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/09000-09099.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/09000-09099.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="9000" type="Weapon" name="Shadow Item: Stormbringer*Stormbringer">
 		<set name="icon" val="icon.time_weapon_dual_sword_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/09100-09199.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/09100-09199.xml
index a5917b113b3d76839e13efd7cde606f2bf86a44e..2394193176c0b60ad6d5abe89e00cfc640d917e1 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/09100-09199.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/09100-09199.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="9100" type="Armor" name="Shadow Item: Majestic Boots">
 		<set name="icon" val="icon.armor_t84_b_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/09200-09299.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/09200-09299.xml
index 42a5187d231d1df63195d1ab12fd8545802ed5c0..87e8b1a631b3a35b8db415d4a4ca515c16a5ba42 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/09200-09299.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/09200-09299.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="9200" type="Armor" name="Shadow Item - Jester Hat - Firework">
 		<set name="icon" val="icon.accessory_jester_cap_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/09300-09399.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/09300-09399.xml
index 000fc2e4b55525c3fa2f4cfd6e3bda24177a2412..85cf6cec18c7d311db54fa35aedee743a3f198ef 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/09300-09399.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/09300-09399.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="9300" type="Weapon" name="Sharpshooter">
 		<set name="icon" val="icon.weapon_taslam_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/09400-09499.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/09400-09499.xml
index d482eeb10f11ba36ed51e5622a7e601b7413c23a..df5f9ae74f0e6efa1f81311acfda59f1e8eec20b 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/09400-09499.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/09400-09499.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="9400" type="Armor" name="Weapon Master Circlet">
 		<set name="icon" val="icon.accessary_weapon_master_circlet_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/09500-09599.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/09500-09599.xml
index 4b180821b1927210a31101477a98c928d8c8ecab..c24ab6d21bdc511e9ab0d35066894d87bcfce15b 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/09500-09599.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/09500-09599.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="9500" type="EtcItem" name="Recipe: Sealed Dynasty Helmet (100%)">
 		<set name="icon" val="icon.etc_recipe_black_i00" />
 		<set name="default_action" val="recipe" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/09600-09699.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/09600-09699.xml
index 4fe48e78316503507ad999fe543980216800bc4f..407e57f12750ff3c284b9ac1c02432c7617da3d1 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/09600-09699.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/09600-09699.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="9600" type="EtcItem" name="Hidden First Page">
 		<set name="icon" val="icon.etc_hidden_1st_page_i00" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/09700-09799.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/09700-09799.xml
index ee2981c301b709c7f5edc830a932fbcb6e9ba547..c3a079701b5521701de9edab70469d7da02a15d8 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/09700-09799.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/09700-09799.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="9700" type="EtcItem" name="Water Dragon Claw">
 		<set name="icon" val="icon.etc_water_dragon_claw_i00" />
 		<set name="default_action" val="skill_reduce" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/09800-09899.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/09800-09899.xml
index ccbe599e9e50999a49cc12b7f5043b14e781e1d3..51437f98c4ab8608ceea7b49e51c89c37d1aeeee 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/09800-09899.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/09800-09899.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="9800" type="EtcItem" name="Ranku's Blueprint">
 		<set name="icon" val="icon.etc_paper_black_i00" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/09900-09999.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/09900-09999.xml
index 4a355091b44d77fefd6da8152849487b39874265..8062496344766b01108cc5ea5885f97f38cd8f0c 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/09900-09999.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/09900-09999.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="9900" type="Armor" name="Quiet Footsteps Ring">
 		<set name="icon" val="icon.accessary_ring_of_mana_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/10000-10099.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/10000-10099.xml
index c7e300ce09b22f62e6421ba08c50890e1660cc40..2aa7594888a36cb92d40841a9686728b53b5b80f 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/10000-10099.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/10000-10099.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="10000" type="EtcItem" name="Wind Potion">
 		<set name="icon" val="icon.etc_wind_potion_i00" />
 		<set name="default_action" val="skill_reduce" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/10100-10199.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/10100-10199.xml
index 6d6adaa40483cf3967225816f0a1b45ceafd7434..85f8fac83b71bf7bdef79abbd7f745b672d848e0 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/10100-10199.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/10100-10199.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="10100" type="EtcItem" name="Spellbook - Diamond Dust">
 		<set name="icon" val="icon.etc_spell_books_element_i00" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/10200-10299.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/10200-10299.xml
index ab567813cbda0a8f55e956f8bc94921e5159969f..75c2df2f0d796f0daab9d1d16563744a826a4721 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/10200-10299.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/10200-10299.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="10200" type="EtcItem" name="Seed: Alternative Blue Coda">
 		<set name="icon" val="icon.etc_coda_seed_i00" />
 		<set name="default_action" val="seed" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/10300-10399.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/10300-10399.xml
index 5074fcc0a485bba0e24c69b6f0fad8d7b72baa50..5795f482a41cc4f50752aee8d964fbd354e96d94 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/10300-10399.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/10300-10399.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="10300" type="EtcItem" name="Transformation Sealbook - Kechi">
 		<set name="icon" val="icon.etc_trans_4f_s_b_01" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/10400-10499.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/10400-10499.xml
index db15bf9e258b59a1338cb60b4ad3248f785222d2..3a20c0fcfa9e874e624dadb3d86f093db3ae2f61 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/10400-10499.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/10400-10499.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="10400" type="EtcItem" name="Icarus Heavy Arms Piece">
 		<set name="icon" val="icon.etc_sword_body_i00" />
 		<set name="etcitem_type" val="material" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/10500-10599.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/10500-10599.xml
index cd154a940b72cabae6bbac8dc93307e23d564722..a1812a8539af943b7b017ea4254840986ceb0470 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/10500-10599.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/10500-10599.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="10500" type="Armor" name="Mithril Shirt - HP">
 		<set name="icon" val="icon.etc_shirts_s_i05" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/10600-10699.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/10600-10699.xml
index 3f5bcb6006e4814a5c94f584a139cb433a41220c..97c18f298e2fcd909f6754996131b07cabb1d450 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/10600-10699.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/10600-10699.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="10600" type="EtcItem" name="Battle Manual - Soul Barrier">
 		<set name="icon" val="icon.etc_kamael_skill_book_i02" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/10700-10799.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/10700-10799.xml
index 1d6a99343b69b1e943f1761fa097e1b216da23b8..9a8554f26161c11e241de6510e635f027359b539 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/10700-10799.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/10700-10799.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="10700" type="Weapon" name="Eclair Bijou {PvP} - Haste">
 		<set name="icon" val="icon.weapon_greed_stinger_i01" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/10800-10899.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/10800-10899.xml
index 23210bb440e5f3feb5de76fb7f51156379e827b4..403c8d11285f37242a5917970116876ceb10db62 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/10800-10899.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/10800-10899.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="10800" type="Armor" name="Draconic Leather Armor {PvP}">
 		<set name="icon" val="icon.armor_t89_ul_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/10900-10999.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/10900-10999.xml
index f42097400954785e85bf7aa1ddb301701b9ec3aa..7186d7c10f3e5e109e59d790dd07487e6580fcfa 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/10900-10999.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/10900-10999.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="10900" type="Weapon" name="Spell Breaker - Hail - Mental Shield">
 		<set name="icon" val="icon.weapon_spell_breaker_i01" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/11000-11099.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/11000-11099.xml
index 614ae1195a146c5d150d41c7e591369edb0be2d2..3f23fdcd145d40d76df154516fd8e999c9463922 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/11000-11099.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/11000-11099.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="11000" type="Weapon" name="Kaim Vanul's Bones - Earth - Conversion">
 		<set name="icon" val="icon.weapon_bone_of_kaim_vanul_i01" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/11100-11199.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/11100-11199.xml
index 6fc111f30b80fdf0673a4fcc4c0787647fa1e3f2..089f2a5ebc10ada18c745d796d5f3b4277d47f82 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/11100-11199.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/11100-11199.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="11100" type="Weapon" name="Flaming Dragon Skull - Wisdom">
 		<set name="icon" val="icon.weapon_dragon_flame_head_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/11200-11299.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/11200-11299.xml
index 89d68f79b57f9ed51d6cec3d8e5c9a752017e59e..a7b3e593d448a9cc99ce6d22102bdc134e1943ec 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/11200-11299.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/11200-11299.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="11200" type="Weapon" name="Draconic Bow - Earth - Focus">
 		<set name="icon" val="icon.weapon_draconic_bow_i01" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/11300-11399.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/11300-11399.xml
index 1ba2c96ab9168c992804aec295041c362c21c31e..daa3efd5aaf8b2d212d5d939fbf39c958b2490fd 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/11300-11399.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/11300-11399.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="11300" type="Weapon" name="Icarus Dual Sword - Destruction">
 		<set name="icon" val="icon.weapon_dual_sword_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/11400-11499.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/11400-11499.xml
index 719b76cd46ec4218332b6030228d41cfe2dfafe6..fb1dba503063ba47a09ab68aec1d2ef89a3900a2 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/11400-11499.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/11400-11499.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="11400" type="Armor" name="Blue Wolf Gloves - Light Armor Use">
 		<set name="icon" val="icon.armor_t69_g_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/11500-11599.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/11500-11599.xml
index 11a8ab74023d994956093c4221627b312adc38cf..4788682af2cd3266669c917bb4ef7acb494028a0 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/11500-11599.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/11500-11599.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="11500" type="Armor" name="Sealed Imperial Crusader Gauntlet">
 		<set name="icon" val="icon.armor_t88_g_i02" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/11600-11699.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/11600-11699.xml
index cf4d3c995059f609bdc386be9c87f55b2ae818e9..cff9d06b01958b477f294893b59d21b5a1ca15fc 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/11600-11699.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/11600-11699.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="11600" type="Armor" name="Dynasty Ring">
 		<set name="icon" val="icon.accessary_dynasty_ring_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/11700-11799.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/11700-11799.xml
index a801f2934ba51c83b24e40bc4b16682c2ad9bf2a..a0f7a69a786c38e17336e9f7d7fa2b1d762a374f 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/11700-11799.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/11700-11799.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="11700" type="Weapon" name="Common Item - Spinebone Sword*Artisan's Sword">
 		<set name="icon" val="icon.weapon_dual_sword_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/11800-11899.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/11800-11899.xml
index 673f00db0b8b9961d041a8f0dd70b0fc87d6342e..387560db832f1ebc6b864ff68a8c62184dc6a39a 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/11800-11899.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/11800-11899.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="11800" type="Weapon" name="Common Item - Grace Dagger">
 		<set name="icon" val="icon.weapon_grace_dagger_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/11900-11999.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/11900-11999.xml
index 153ee7c4e6ba0df864cc41373345dd5b7f566b01..f92fe61cf788530d20b9e9570caf98433040e9b5 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/11900-11999.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/11900-11999.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="11900" type="Weapon" name="Common Item - Sword of Valhalla">
 		<set name="icon" val="icon.weapon_sword_of_valhalla_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/12000-12099.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/12000-12099.xml
index fcd84631faccb8456053b04b7bcdea161a239b24..a8ffa6d5d70529f3e092be76e889cf965de810d5 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/12000-12099.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/12000-12099.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="12000" type="Weapon" name="Common Item - Arcana Mace">
 		<set name="icon" val="icon.weapon_arcana_mace_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/12100-12199.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/12100-12199.xml
index 96a92a821141920b36d0b2e4053e25187fa4525d..709cc9911c06eb039fed0a4f7b4669efdb7d9101 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/12100-12199.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/12100-12199.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="12100" type="Armor" name="Common Item - Karmian Stockings">
 		<set name="icon" val="icon.armor_t53_l_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/12200-12299.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/12200-12299.xml
index 636c40710faa64ad380316b01f95432eff376186..525297e1dbfd4b0eac01947a727bc0997b89e9ca 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/12200-12299.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/12200-12299.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="12200" type="Armor" name="Common Item - Blue Wolf Gloves - Robe">
 		<set name="icon" val="icon.armor_t70_g_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/12300-12399.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/12300-12399.xml
index def1b531c70b534374d91fb0ee3988462d63c875..1d1e8bc06d028f8041e3f1af87996f1d1c5afbbb 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/12300-12399.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/12300-12399.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="12300" type="Armor" name="Common Item - Sealed Imperial Crusader Gauntlet">
 		<set name="icon" val="icon.armor_t88_g_i02" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/12400-12499.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/12400-12499.xml
index 1e7d32244145f004afbc6b459439046ad64d4b06..813af0c74dd8f0d08396ef6688bc3f162327f9a0 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/12400-12499.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/12400-12499.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="12400" type="EtcItem" name="Foundation Kaim Vanul's Bones">
 		<set name="icon" val="icon.weapon_bone_of_kaim_vanul_i00" />
 		<set name="weapon_type" val="blunt" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/12500-12599.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/12500-12599.xml
index 7f287ec6343040b9f9be5d1b706e8ef2391bd89d..7c8a017338b4e28823612e48ee4fafc0477eeb2e 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/12500-12599.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/12500-12599.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="12500" type="EtcItem" name="Foundation Zubei's Helmet">
 		<set name="icon" val="icon.armor_helmet_i00" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/12600-12699.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/12600-12699.xml
index ad6be7e892bd7392fd7c30a0e31766511191adc0..2366373b57565cfef2367558b610f4185ed1d6c3 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/12600-12699.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/12600-12699.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="12600" type="EtcItem" name="Foundation Sealed Majestic Plate Armor">
 		<set name="icon" val="icon.armor_t83_ul_i02" />
 		<set name="armor_type" val="heavy" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/12700-12799.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/12700-12799.xml
index d8b307dc42e9d64eb6559f67164d1bee725cf65b..d03be9629d441ebb90d51279c0c75740f6f07001 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/12700-12799.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/12700-12799.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="12700" type="EtcItem" name="Foundation Sealed Dynasty Leather Boots">
 		<set name="icon" val="icon.armor_t92_b_i02" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/12800-12899.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/12800-12899.xml
index edbe152d9956dd5c79b3f1da4cec19d9d7dd2137..f57c066d52cf1ad61fea556fec9ce9a88f672769 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/12800-12899.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/12800-12899.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="12800" type="Weapon" name="Pumpkin Transformation Stick - 30-day limited period">
 		<set name="icon" val="icon.weapon_pumpkin_stick_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/12900-12999.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/12900-12999.xml
index d0b17f2d688e177c35ac9115bf1b5f49bbf16f4d..01839687a9f0866df9977ce196f7fe237032450c 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/12900-12999.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/12900-12999.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="12900" type="Weapon" name="Demon Splinter - Thunder {PvP} - Critical Stun">
 		<set name="icon" val="icon.weapon_demon_splinter_i01" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/13000-13099.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/13000-13099.xml
index d1540ebec7b4e14389535de7cc18908d9c5edf9e..3e37af94196aacf5ccaef43266182421bc1cd6fd 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/13000-13099.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/13000-13099.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="13000" type="Armor" name="Sealed Helm of Nightmare - Light Armor Use">
 		<set name="icon" val="icon.armor_leather_helmet_i02" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/13100-13199.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/13100-13199.xml
index 2ddbf5ea3b2a9698d7d28f94657f8abc275a2f96..7da07a7d6d77866417348a3ef45f2e84882a1f8a 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/13100-13199.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/13100-13199.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="13100" type="EtcItem" name="Recipe - Sealed Arcana Sigil (60%)">
 		<set name="icon" val="icon.etc_recipe_black_i00" />
 		<set name="default_action" val="recipe" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/13200-13299.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/13200-13299.xml
index d287345f792f5cc8f407ec3b7a9fb327ad276ea9..67aef11d412cf594ac7cbd1d853f830df3906afa 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/13200-13299.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/13200-13299.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="13200" type="Weapon" name="Player Commendation - Bellion Cestus - Player Commendation Weapon">
 		<set name="icon" val="icon.weapon_bellion_cestus_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/13300-13399.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/13300-13399.xml
index 075fc0b9ea327338aa07082c4c1296fd1cac9798..61dbea99f53363ce95ccf6a47c2de7f77d2d88d3 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/13300-13399.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/13300-13399.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="13300" type="EtcItem" name="Feather of Blessing (Event)">
 		<set name="icon" val="icon.blessed_feather_i00" />
 		<set name="material" val="liquid" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/13400-13499.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/13400-13499.xml
index c1d31c9771aca3b66ef0f4af40030d8becb4ba21..9481327e698a935e4e11cebcc9f289dfde58e654 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/13400-13499.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/13400-13499.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="13400" type="EtcItem" name="Scroll of Escape: Gludin Village">
 		<set name="icon" val="icon.etc_scroll_of_return_i00" />
 		<set name="default_action" val="skill_reduce" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/13500-13599.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/13500-13599.xml
index 5b06d3cf11fd27260f2d7c6d0637913aec2b951e..8b2d5f1bd3edf7d34725934c81d00c041f6903c6 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/13500-13599.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/13500-13599.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="13500" type="Armor" name="Refined Black Feather Mask">
 		<set name="icon" val="icon.accessory_black_feather_mask2_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/13600-13699.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/13600-13699.xml
index cc07511e43f2dc72a76f899c8cc3623cc11351d7..9be30e9452eedf5912ca6151b04a81beb6ed1157 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/13600-13699.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/13600-13699.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="13600" type="EtcItem" name="Transformation Scroll: Giran Archer Mercenary">
 		<set name="icon" val="icon.scroll_of_verification_i00" />
 		<set name="default_action" val="skill_reduce" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/13700-13799.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/13700-13799.xml
index a0ab9ab1f0555338f221edab547158d7aac0d0ce..a4551d9ff315dcf71213614c58586c47ddea31ae 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/13700-13799.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/13700-13799.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="13700" type="EtcItem" name="Innadril Supply Box - Magic Pin - Grade B, C">
 		<set name="icon" val="icon.etc_box_of_adventure_1_i00" />
 		<set name="default_action" val="capsule" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/13800-13899.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/13800-13899.xml
index 94b3718ac2dc7b986914e7d65df50e1a0a1d7415..e22fe1d16f0e4c9d230a1aa4cb07937b446eea32 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/13800-13899.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/13800-13899.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="13800" type="EtcItem" name="Transformation Scroll: Frog">
 		<set name="icon" val="icon.etc_q_frog_green_i00" />
 		<set name="default_action" val="skill_reduce" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/13900-13999.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/13900-13999.xml
index 456764ab712a669be09e61e3e6aea2a38b5698e6..f5d01ebf1749bab9c83b56b2cc1d179526bd4663 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/13900-13999.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/13900-13999.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="13900" type="EtcItem" name="Sealed Magic Pin (A-Grade)">
 		<set name="icon" val="icon.pin_i00" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/14000-14099.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/14000-14099.xml
index a88202e1b7ae97ca52b865280383006442fc1d21..330cc78851f8e1c657a7761e01c26c30399661d2 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/14000-14099.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/14000-14099.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="14000" type="EtcItem" name="Dion Supply Box - Hair Accessory">
 		<set name="icon" val="icon.etc_shirts_a_i04" />
 		<set name="default_action" val="capsule" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/14100-14199.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/14100-14199.xml
index 2943ed88a4e1e038d144f8cd665877a725029f5c..1069892eb2f334768a4f773c9a6d535457cfb64f 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/14100-14199.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/14100-14199.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="14100" type="Armor" name="Teddy Girl Agathion Bracelet (event) - 7-day limited period">
 		<set name="icon" val="icon.etc_rbracelet_aga_agit_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/14200-14299.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/14200-14299.xml
index 7daa36227a8e98ddf2d5eac5f7e465e61448bc52..05171de98591b29241edb61de415425552579b81 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/14200-14299.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/14200-14299.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="14200" type="EtcItem" name="Forgotten Scroll - Summon Imperial Phoenix">
 		<set name="icon" val="icon.etc_spell_books_element_i00" />
 		<set name="default_action" val="skill_reduce" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/14300-14399.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/14300-14399.xml
index fb7bb5e072bce7e5e564a4c460ee288d62238a88..bd68e15a51afd2f9e4fb6e53114dff3c99d8050c 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/14300-14399.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/14300-14399.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="14300" type="EtcItem" name="Yaksa Mace">
 		<set name="icon" val="icon.weapon_yaksa_mace_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/14400-14499.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/14400-14499.xml
index d40d73e5ebb6558f18344587c7a716eb86c3c728..c94483c73f06efb5379be4fd1d4e7c7c26f79ee6 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/14400-14499.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/14400-14499.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="14400" type="Weapon" name="Icarus Hand {PvP} - Rsk. Evasion">
 		<set name="icon" val="icon.weapon_icarus_knuckle_i01" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/14500-14599.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/14500-14599.xml
index c93c47329560703798471ab3eaa3314602e2d408..3d4a936021d1c79464fe8e1d69f30069dbbc2ca9 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/14500-14599.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/14500-14599.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="14500" type="Weapon" name="Vesper Retributer {PvP} - Health">
 		<set name="icon" val="icon.weapon_vesper_retributer_i01" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/14600-14699.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/14600-14699.xml
index 180a190af262ead67eb150e09f00a23182cad632..cdb9894dcdaf2c0f3e2968ab9d8b49f581b9571e 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/14600-14699.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/14600-14699.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="14600" type="Armor" name="Schuttgart Dark Resistance Ring">
 		<set name="icon" val="icon.accessary_inferno_ring_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/14700-14799.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/14700-14799.xml
index aa37072b0b1920d0003cb47dc2f7bed68d150561..ab3c2b8ffb5e425ce2a60b53d935038fa79b2cc1 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/14700-14799.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/14700-14799.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="14700" type="EtcItem" name="Greater Healing Potion">
 		<set name="icon" val="icon.etc_reagent_white_i00" />
 		<set name="default_action" val="skill_reduce" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/14800-14899.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/14800-14899.xml
index bd50f963f11b963e109f8a6bf43e0f60b2c28d81..7a9960e6e6194b3937be490f93211b7878c270ec 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/14800-14899.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/14800-14899.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="14800" type="Armor" name="Afro Perm Wig - Pink">
 		<set name="icon" val="icon.accessory_captain_cap_i00" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/14900-14999.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/14900-14999.xml
index fbe585896ee5dfed970c988d6d60e9b85b8401ce..f5ca27e59bca0ab709dd511dd99e4746b2596ad4 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/14900-14999.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/14900-14999.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="14900" type="EtcItem" name="Rune Supply Box - Magic Ornament - Grade S, A">
 		<set name="icon" val="icon.etc_box_of_adventure_2_i00" />
 		<set name="default_action" val="capsule" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/15000-15099.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/15000-15099.xml
index 7e4219a06049377658428b4273910ca28b178885..1dcea2784bdefdcd64747727d232745ac79ccd08 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/15000-15099.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/15000-15099.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="15000" type="Armor" name="Leather Armor of Doom of Fortune - 30-day limited period">
 		<set name="icon" val="icon.armor_t72_ul_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/15100-15199.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/15100-15199.xml
index de46bf79d4b44d9cc7af52def742eea56d2d81f2..c62257c1b82b26f7251955c922f3576f7f42d408 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/15100-15199.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/15100-15199.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="15100" type="Armor" name="Avadon Boots of Fortune - Robe - 10-day limited period">
 		<set name="icon" val="icon.armor_t59_b_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/15200-15299.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/15200-15299.xml
index 3bf0e9994441b6c9c40d5b207c55681e0bb9d17a..d0a896bd3e918eac1daa62ffefab72ff1f677287 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/15200-15299.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/15200-15299.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="15200" type="EtcItem" name="Orc Mage Class Equipment Set - 10-day limited period">
 		<set name="icon" val="icon.etc_equip_item_box_i00" />
 		<set name="default_action" val="peel" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/15300-15399.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/15300-15399.xml
index 99a5b14c93fa7ca1886e709efb7738352f2e2978..8e0e15dc9fdd8d0f816c952620b6f5f5bb147750 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/15300-15399.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/15300-15399.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="15300" type="Weapon" name="Transparent Dual (for NPC)">
 		<set name="icon" val="icon.weapon_dual_sword_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/15400-15499.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/15400-15499.xml
index 793ffc3254f9f426209df82b5068986a7c203d7c..8888f86a71d3dbc9872a35c35ef5053cf7c241f0 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/15400-15499.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/15400-15499.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="15400" type="Armor" name="Vitality Belt (Event) - 60-day limited period">
 		<set name="icon" val="icon.event_energy_belt_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/15500-15599.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/15500-15599.xml
index 893f07bf90e7ed4a0e91c8211db2a9cdae9c9081..5fd968f96ad9ee04835598b24a0c27f7f82d45b8 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/15500-15599.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/15500-15599.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="15500" type="EtcItem" name="Sel Mahum Diary">
 		<set name="icon" val="icon.etc_spell_books_white_i00" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/15600-15699.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/15600-15699.xml
index e46473fa7d984f68bf18b92f1e378cc43f6f93f7..261a076f9b2fa4b0bad37c068bc0530c386c579e 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/15600-15699.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/15600-15699.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="15600" type="Armor" name="Vorpal Gloves">
 		<set name="icon" val="icon.armor_t96_g_i03" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/15700-15799.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/15700-15799.xml
index 25017a87b35db154f04b0f696f54e6bf83a20d79..5f1f0625567c63f6387a752e64f465c16dccd67d 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/15700-15799.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/15700-15799.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="15700" type="Armor" name="Sealed Moirai Gaiter">
 		<set name="icon" val="icon.armor_t94_l_i02" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/15800-15899.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/15800-15899.xml
index c8637acff0b723d1d590d288a40916cb8cada86e..e7b921018f983e04470a95bb44435b731b4b7164 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/15800-15899.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/15800-15899.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="15800" type="EtcItem" name="Recipe - Sealed Vesper Stockings (60%)">
 		<set name="icon" val="icon.etc_recipe_black_i00" />
 		<set name="default_action" val="recipe" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/15900-15999.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/15900-15999.xml
index 59b23f1bc3810d5b0a62853a5d783fca9c841cf5..3d01b4e3ea7b5265d3befe581dca4d7ed4a73283 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/15900-15999.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/15900-15999.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="15900" type="Weapon" name="Archangel Sword - Acumen">
 		<set name="icon" val="icon.weapon_archangel_sword_i001" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/16000-16099.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/16000-16099.xml
index 7b5dbd0bd2fb951ed14e9f1b190082cda16cb2dd..75aa82b7a4c9304fb1e789d88e6ddf2c7b7b04d2 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/16000-16099.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/16000-16099.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="16000" type="Weapon" name="Jade Claw {PvP} - Health">
 		<set name="icon" val="icon.weapon_jademice_claw_i01" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/16100-16199.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/16100-16199.xml
index 4521c58a970cfdb2b6b1eb804f109fa5d4b0021e..143ba4fed0884a0db5189d74c3d0babc1c1717c0 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/16100-16199.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/16100-16199.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="16100" type="Armor" name="Refined Green Skeleton Circlet">
 		<set name="icon" val="icon.accessory_animal_warrior_skeleton_circlet_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/16200-16299.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/16200-16299.xml
index 04c6505d0b528ae8d166ced83479bbba46b90b39..67d9b729b82c9ddb8e07670409fa5d57b84fb696 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/16200-16299.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/16200-16299.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="16200" type="Weapon" name="Vesper Retributer - Gale {PvP} - HP Regeneration">
 		<set name="icon" val="icon.weapon_vesper_retributer_i01" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/16300-16399.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/16300-16399.xml
index f044baa0e02460d90073c91107705e59c68e0240..4a87085f41584e1413c53f0fa213d53087bf4b4c 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/16300-16399.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/16300-16399.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="16300" type="Armor" name="Moirai Gloves">
 		<set name="icon" val="icon.armor_t102_g_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/16400-16499.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/16400-16499.xml
index 6993415f48035ce6d01d7016e4e8756bb5a27e0e..8f856c1fc21f7cb5506d801547f2f07dcc197de7 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/16400-16499.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/16400-16499.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="16400" type="Armor" name="Teddy Girl Summon Bracelet - Permanent Use">
 		<set name="icon" val="icon.etc_rbracelet_aga_agit_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/16800-16899.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/16800-16899.xml
index 741c92cb2855aa5d69d19fe06341006b8bdac014..a7f33deea9a85fc0b852575f85e57b9468ad174d 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/16800-16899.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/16800-16899.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="16837" type="Armor" name="Vesper Noble Helmet">
 		<set name="icon" val="icon.armor_helmet_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/16900-16999.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/16900-16999.xml
index 372de3845a20591949b41afc1744bbd3842a9f67..efbb3d4e790168c3ef064139fd88018d88f14ee4 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/16900-16999.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/16900-16999.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="16900" type="Armor" name="Full Plate Helmet of Fortune - 90-day limited period">
 		<set name="icon" val="icon.armor_leather_helmet_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/17000-17099.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/17000-17099.xml
index fc71d844e562d1bee26d5c96b9b4094fdb2dcbb8..580e5e54829d40fe1d5b8baf4491ee830f68fafe 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/17000-17099.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/17000-17099.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="17000" type="EtcItem" name="Black Ore Set of Fortune - 90-day limited period">
 		<set name="icon" val="icon.etc_jewel_box_i00" />
 		<set name="default_action" val="peel" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/17100-17199.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/17100-17199.xml
index d459c7a7674943a79748e778d23906c3c98182a1..27fcfe84f9bbd2b649d08a81a580575b8e6973ab 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/17100-17199.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/17100-17199.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="17100" type="EtcItem" name="Nevit's Hourglass - 1 hour - 20~39">
 		<set name="icon" val="icon.etc_dragons_blood_i03" />
 		<set name="default_action" val="skill_reduce" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/17200-17299.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/17200-17299.xml
index e635ab08be01bf6625bf7d4ce47b75bd25e69ea3..3e7fd28f866d1543d7d20ef64d4fed57c4a92925 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/17200-17299.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/17200-17299.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="17200" type="Armor" name="National Representative Warrior's Earring">
 		<!-- Description: National Representative Warrior's Earring. It has effects of MP +31, shock/mind attack resistance +20%, Shock/Mental attack rate +20% and Vampiric Rage. Only one effect is applied even when the two identical earrings are worn. Cannot be exchanged or dropped. -->
 		<set name="icon" val="icon.accessory_earring_of_hero_i00" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/20000-20099.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/20000-20099.xml
index f9e725f44f3996ec53a75c1e728842244e1387d5..359e4b90a154446e33058c4dbe31bf9f118b4db0 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/20000-20099.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/20000-20099.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="20000" type="EtcItem" name="Spicy Kimchee">
 		<set name="icon" val="BranchSys.icon.etc_kimchi_power_i00" />
 		<set name="immediate_effect" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/20100-20199.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/20100-20199.xml
index 26308376aa41112645761e4d486fdb4c607365ad..61b9f89c4c4c38ac2d5c2fb7ded5c1200d028c13 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/20100-20199.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/20100-20199.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="20100" type="Armor" name="Saving Santa Hat - 24-hour limited period">
 		<set name="icon" val="BranchSys.icon.br_xmas_gawibawibo_cap_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/20200-20299.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/20200-20299.xml
index cdcd9e726a8e417742beb04146444e0e23060098..b079e124a99f03cfc0597d3c4a62ddf6c479fd6c 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/20200-20299.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/20200-20299.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="20200" type="Armor" name="Agathion of Love - 3-day limited period">
 		<set name="icon" val="icon.etc_rbracelet_aga_agit_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/20300-20399.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/20300-20399.xml
index eeea594380201b1b1398cb4ee7c2849453a62e4e..d1dce5201b405dddf64b3edb9915e797c8634cd4 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/20300-20399.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/20300-20399.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="20300" type="Armor" name="Agathion Seal Bracelet - Blue Sumo Wrestler - Wild Magic - 7-Day Limited Period">
 		<set name="icon" val="BranchSys.icon.br_aga_sumo_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/20400-20499.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/20400-20499.xml
index 84bfad6f16410f96d4e9781b2134a70c157a7049..fb753ddc8efb8bfb4122314fdb9efb955ab8a950 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/20400-20499.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/20400-20499.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="20400" type="Armor" name="Laborer Hat - Blessed Soul - 7-day limited period">
 		<set name="icon" val="BranchSys.icon.br_people_cap_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/20500-20599.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/20500-20599.xml
index 812428fa69d83b9113dadd9d0ca346b5b43dd58c..bcefbcfc3863fc8016c186376040308213dc6cf3 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/20500-20599.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/20500-20599.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="20500" type="Armor" name="Feline King Hat">
 		<set name="icon" val="icon.accessory_king_of_cat_cap_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/20600-20699.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/20600-20699.xml
index fc14c452cf98dbfa0ea9fe9d62fd2782dcf552aa..ed62d43438fa34aeb1beb0601a5ab0db733e381a 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/20600-20699.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/20600-20699.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="20600" type="Weapon" name="Twilight Staff - Dance of Shadow - 7-day limited period">
 		<set name="icon" val="BranchSys.icon.br_invokespirit_stick_a_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/20700-20799.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/20700-20799.xml
index f09b702be470f23a48a005de306624521d353587..42ec25bffd609984e20aaa1000168f922b585307 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/20700-20799.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/20700-20799.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="20700" type="EtcItem" name="Bamboo Panda Hat Pack">
 		<set name="icon" val="BranchSys.icon.br_four_leaf_clover_box_i00" />
 		<set name="default_action" val="peel" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/20800-20899.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/20800-20899.xml
index 1bc17a0eb32b0addcaa53bd6287098de9387e6b7..cac9bdbd7d40328819c4723e5bf01f9fd87d16b5 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/20800-20899.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/20800-20899.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="20800" type="EtcItem" name="Red Opera Agathion 7-Day Pack - Spear of Flames">
 		<set name="icon" val="BranchSys.icon.br_four_leaf_clover_box_i00" />
 		<set name="default_action" val="peel" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/20900-20999.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/20900-20999.xml
index 13c7af11293a319c8c506f0a1b9591308ebb59b3..e601c766b8523e275c58614194f9f172eaf9fbb9 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/20900-20999.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/20900-20999.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="20900" type="Armor" name="Santa Hat - 14-day limited period">
 		<set name="icon" val="BranchSys.icon.br_xmas_gawibawibo_cap_i00" />
 		<set name="default_action" val="equip" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/21000-21099.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/21000-21099.xml
index 7b05c9316725e6bec25ae635ded6c54b9adbac15..ee4d2115a4c8adc4cb5edfe724f97601ab0e924e 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/21000-21099.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/21000-21099.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="21000" type="EtcItem" name="Ball Trapping Gnosian Agathion Pack">
 		<set name="icon" val="BranchSys.icon.br_four_leaf_clover_box_i00" />
 		<set name="default_action" val="peel" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/21100-21199.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/21100-21199.xml
index 48f72501470041d9c72e2b0ba2158df476360495..eb536fcb30270e26b617c9f9136ec30d9d1e06d9 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/21100-21199.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/21100-21199.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="21100" type="EtcItem" name="Shiny Cube Fragment Armor - S">
 		<!-- Description: Speak with a warehouse keeper to exchange this for a S Grade Blessed Armor Enchant Scroll. -->
 		<set name="icon" val="Branchsys2.icon.shine_cubic_a_piece_i04" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/21200-21299.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/21200-21299.xml
index 36ec601874857fe42f09bef6dfcafd1b1fcb923b..ce0802ad92ad6549c15be96e2776cb09de7fe29d 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/21200-21299.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/21200-21299.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="21200" type="EtcItem" name="Mysterious Scroll - Prophecy of Wind">
 		<!-- Description: Dimensional item. For 60 minutes, receives help from a great spirit to increase Max HP by 20%, rate of critical attack by 20%, power of Prominent Damage through magic damage by 20%, P. Atk. by 10%, P. Def. by 20%, Atk. Spd. by 20%, M. Atk. by 20%, M. Def. by 20%, Casting Spd. by 20%, and Resistance to de-buff by 10%. Decreases moving speed by 20%. Bestows the ability to recover as HP 5% of the standard short-range physical damage inflicted on the enemy. Cannot be exchanged or dropped. Can be shared between characters within an account through the Dimensional Merchant. Can be stored in a private warehouse. -->
 		<set name="icon" val="BranchSys.icon.br_xmas_scroll_i00" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/21300-21399.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/21300-21399.xml
index b1cf0542111b5aa91e6bbd0278568d91b11955cd..2de73b799987116426b8dd182f77285e4d46746a 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/21300-21399.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/21300-21399.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="21300" type="EtcItem" name="Armor-type Enhance Backup Stone (S-Grade) Pack - Event">
 		<!-- Description: Dimensional item pack. Gift box containing 1 armor-type enhance backup stone (S-Grade). Cannot be exchanged, dropped, or destroyed. Can be shared between characters within an account through the Dimensional Merchant. Can be stored in a private warehouse. -->
 		<set name="icon" val="BranchSys.icon.br_four_leaf_clover_box_i00" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/21400-21499.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/21400-21499.xml
index 3c71e81eaef3066055d3757e3b28a2501085f214..6c38693ed6fbd4b95173e9957c7e3e17ced5428b 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/21400-21499.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/21400-21499.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="21400" type="EtcItem" name="Gold Maned Lion Mount Bracelet 30-Day Pack - Event">
 		<!-- Description: Dimensional item pack. Gift box containing 1 Gold Maned Lion Mount Bracelet (30 day). Cannot be exchanged, dropped, or destroyed. Can be shared between characters within an account through the Dimensional Merchant. Can be stored in a private warehouse. -->
 		<set name="icon" val="BranchSys.icon.br_four_leaf_clover_box_i00" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/21500-21599.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/21500-21599.xml
index 0ce92ce48eeddff975d7befdb1acb5adc71b0eb8..bae4f58abe62397748fac39f69090f73b4971a88 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/21500-21599.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/21500-21599.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="21500" type="EtcItem" name="Kai the Cat Hat Pack - Event">
 		<!-- Description: Dimensional item pack. Gift box containing 1 Kai the Cat hat. Cannot be exchanged, dropped, or destroyed. Can be shared between characters within an account through the Dimensional Merchant. Can be stored in a private warehouse. -->
 		<set name="icon" val="BranchSys.icon.br_four_leaf_clover_box_i00" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/21600-21699.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/21600-21699.xml
index 2a00e1a742e106a53935de8a47c1be7bd01aadbe..0913fda84922f3da0280e1f848386e619aa50aed 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/21600-21699.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/21600-21699.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="21600" type="EtcItem" name="Standard Package 300">
 		<!-- Description: Dimensional item. Gift box containing 3 Vitality Replenishing Beverages, 3 feathers of blessing, and 3 high quality hunting helpers. Cannot be exchanged or dropped. Can be shared between characters within an account through the Dimensional Merchant. Can be stored in a private warehouse. -->
 		<set name="icon" val="icon.etc_pi_gift_box_i04" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/21700-21799.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/21700-21799.xml
index 42b211160f170c95ce3c2f7ef0192849cdf0f5f7..958e72e8bdac1ad8df62005aae861b916b7e9f30 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/21700-21799.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/21700-21799.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="21700" type="EtcItem" name="Olf's T-shirt Pack">
 		<!-- Description: Dimensional item. Gift box containing 1 Olf's T-shirt. Can be exchanged while in a pack. Cannot be dropped. Can be shared between characters within an account through the Dimensional Merchant. Can be stored in a private warehouse. -->
 		<set name="icon" val="icon.etc_pi_gift_box_i04" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/21800-21899.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/21800-21899.xml
index fcc7e02aef6904aeeebb80de1a21b0c6f4b476d8..674cbcb9ba3fbdd82a758c87b5ad457410c5cb53 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/21800-21899.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/21800-21899.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="21800" type="Armor" name="Dynasty Leather Armor of Fortune - 90-day limited period">
 		<!-- Description: Cannot be exchanged or dropped. Can be stored in a private warehouse. Can be assigned an attribute. -->
 		<set name="icon" val="icon.armor_t92_u_i00" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/21900-21999.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/21900-21999.xml
index f4f3871f5cc7504b6a3594a3bcd5d3f623e06046..9066a47ad8553ac1b5fa1ee6ef0a013dbfd8eda6 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/21900-21999.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/21900-21999.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="21900" type="EtcItem" name="Totem of Spirit">
 		<!-- Description: Summons a totem that increases MP recovery speed by 15%. Totem duration is 30 minutes. Can only be used inside the lairs of Valakas and Antharas. Re-use time is 10 minutes. -->
 		<set name="icon" val="BranchSys2.icon.totem_of_mind" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/22000-22099.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/22000-22099.xml
index ec16f88d81c87dcb7b3bafb12c60967b056119b4..0a895753078aad686dfb69f050b26590b688ffa1 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/22000-22099.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/22000-22099.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="22000" type="EtcItem" name="Small fortuna box">
 		<set name="icon" val="br_cashtex.item.br_cash_lucky_box_i00" />
 		<set name="default_action" val="capsule" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/22100-22199.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/22100-22199.xml
index 0631b6340f307f6b73901faf30c00ad709f857de..832f1db6e48b33db7a0ba0a011b4671d2580a44e 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/22100-22199.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/22100-22199.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="22100" type="EtcItem" name="Spiritshot Pack (C-Grade)">
 		<set name="icon" val="br_cashtex.item.br_cash_pack_of_spiritshot_c_i00" />
 		<set name="default_action" val="capsule" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/22200-22299.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/22200-22299.xml
index 7137e100cb33b08569632d3be68606c1a6664afb..8010194014732866e5cfbf067dc31c0ba94bcc93 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/22200-22299.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/22200-22299.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="22200" type="Armor" name="Agathion Seal Bracelet - Lantern - 33-day limited period (event)">
 		<!-- Description: A bracelet that can summon a Lantern Agathion. The Lantern Agathion's gift cannot be received if there is no room in the inventory and carried item weight. Cannot be exchanged, dropped, or destroyed. Item that can be stored in a private warehouse. -->
 		<set name="icon" val="BranchSys2.icon.event_agathion_han_i00" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/22300-22399.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/22300-22399.xml
index 8928bb406072459d6e3c43b219d1226cc1c51578..345926fa6d2c1621e98d75dfe722495a217965e4 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/22300-22399.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/22300-22399.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="22300" type="EtcItem" name="Miracle Happy Cake - Decoration - 15-day limited period (event)">
 		<!-- Description: Take this along with a Perfect Happy Cake to the Valentine Messenger Queen of Hearts to complete a Miracle Happy Cake. Cannot be exchanged or dropped. Can be destroyed. Can be stored in a private warehouse. -->
 		<set name="icon" val="BranchSys.icon.br_valentine_deco_i00" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/22500-22599.xml b/L2J_DataPack_BETA/dist/game/data/stats/items/22500-22599.xml
index ebac189dfd4575b80a7f8bca2f4bf2faa1bc0176..45f67c1d2ff6428eb8970a5b5e3b8c701e54a6ed 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/items/22500-22599.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/items/22500-22599.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="items.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/items.xsd">
 	<item id="22565" type="EtcItem" name="Dimensional Support Pack">
 		<!-- Description: Wrapped pack containing 2 Superior Minion Coupons, 3 Feathers of Blessing, 5 Kamaloka (Hall of the Abyss, Labyrinth of the Abyss, Near) entrance passes, and 3 Vitality Replenishing Beverages. Cannot be exchanged, dropped, or destroyed. -->
 		<set name="icon" val="icon.etc_pi_gift_box_i04" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/npc/PetData.xml b/L2J_DataPack_BETA/dist/game/data/stats/npc/PetData.xml
index 8b26d647768e72bc484e04e652d43be6b0d0b639..6a2125dd66289c347847c2259c46c51a2e0cbf01 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/npc/PetData.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/npc/PetData.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="utf-8"?>
-<pets xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="PetData.xsd">
+<pets xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/PetData.xsd">
 	<!-- pet_wolf_a -->
 	<pet id="12077" index="1">
 		<set name="food" val="2515" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/00000-00099.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/00000-00099.xml
index 617653f0688f0871061b9e16cdfb88506bcf4f20..4caae76281ffaecdca7d2d57591b8c9a29f7e195 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/00000-00099.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/00000-00099.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="1" levels="37" name="Triple Slash" enchantGroup1="2" enchantGroup2="2" enchantGroup3="2" enchantGroup4="2" enchantGroup5="2" enchantGroup6="2" enchantGroup7="2">
 		<table name="#enchantMagicLvl"> 76 76 76 77 77 77 78 78 78 79 79 79 80 80 80 81 81 81 82 82 82 83 83 83 84 84 84 85 85 85 </table>
 		<table name="#mpConsume"> 42 43 45 45 46 47 49 50 52 53 55 56 58 58 59 61 62 64 65 67 68 70 71 71 73 74 75 77 78 79 80 82 83 84 85 86 86 </table>
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/00100-00199.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/00100-00199.xml
index 9ed4719cae9169016723a12ceaef9581ef00ab29..ef1d353c6f3aaf656b36b85ddf209fbac42eb00f 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/00100-00199.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/00100-00199.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="100" levels="15" name="Stun Attack" enchantGroup1="2">
 		<table name="#enchantMagicLvl"> 76 76 76 77 77 77 78 78 78 79 79 79 80 80 80 81 81 81 82 82 82 83 83 83 84 84 84 85 85 85 </table>
 		<table name="#mpConsume"> 19 19 20 21 21 22 24 25 26 27 28 29 31 32 33 </table>
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/00200-00299.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/00200-00299.xml
index 1c2b00a1a29269af7bf4d2576c40ce52d541afc5..d734accce70f445720ec2cf6d78740dd11018bbf 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/00200-00299.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/00200-00299.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="205" levels="45" name="Sword/Blunt Weapon Mastery" enchantGroup1="1" enchantGroup2="1" enchantGroup3="1">
 		<!-- Confirmed CT2.5 -->
 		<table name="#pAtk"> 4.5 7.3 8.9 10.7 12.8 15.1 17.7 20.5 23.7 25.4 27.1 29 30.9 32.9 35 37.1 39.4 41.7 44.1 46.6 49.2 51.9 54.6 57.5 60.4 63.3 66.4 69.5 72.7 76 79.3 82.7 86.1 89.6 93.1 96.6 100.2 103.8 107.5 111.1 114.8 118.4 122.1 125.7 129.3 </table>
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/00300-00399.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/00300-00399.xml
index 1d99e43fe89dc3b8c3f7f2f10454c1ccdf7cdf62..b0c22c02868dd17787c7ec46ac2691fa751d514c 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/00300-00399.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/00300-00399.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="301" levels="5" name="Summon Big Boom" enchantGroup1="1">
 		<table name="#enchantNpcIds"> 14707 14708 14709 14710 14711 14712 14713 14714 14715 14716 14717 14718 14719 14720 14721 14722 14723 14724 14725 14726 14727 14728 14729 14730 14731 14732 14733 14734 14735 14736 </table>
 		<table name="#mpConsume"> 74 82 88 94 100 </table>
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/00400-00499.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/00400-00499.xml
index 3f6b0c36c7ea965a2d1b1c1ab94c09a5c7a75d7c..9e640f772cc0af5d884dde4ce5b78b12a61cf8b0 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/00400-00499.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/00400-00499.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="400" levels="10" name="Tribunal" enchantGroup1="2" enchantGroup2="2" enchantGroup3="2" enchantGroup4="2">
 		<table name="#ench1Power"> 1881 1921 1961 2001 2041 2081 2121 2161 2201 2241 2281 2321 2361 2401 2441 2481 2521 2561 2601 2641 2681 2721 2761 2801 2841 2881 2921 2961 3001 3041 </table>
 		<table name="#ench2Power"> 80 81 82 82 83 84 84 85 86 86 87 88 88 89 90 90 91 92 92 93 94 94 95 96 96 97 98 98 99 100 </table>
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/00500-00599.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/00500-00599.xml
index 4a668a521919123c605ee237366d3f20f166f9c5..d4366a16b3d3d5ee786592722ceccae68350e890 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/00500-00599.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/00500-00599.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="500" levels="2" name="True Berserker" enchantGroup1="1" enchantGroup2="1">
 		<!-- Confirmed CT2.5 -->
 		<table name="#enchantMagicLvl"> 76 76 76 77 77 77 78 78 78 79 79 79 80 80 80 81 81 81 82 82 82 83 83 83 84 84 84 85 85 85 </table>
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/00600-00699.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/00600-00699.xml
index 786031d6ce6a7df40ba798ce7ea6500b427ae291..3c28b185942f2bcff4969a3ffffb66bd5d82a286 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/00600-00699.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/00600-00699.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="600" levels="1" name="Residence Guidance">
 		<!-- Confirmed CT2.5 -->
 		<set name="isClanSkill" val="true" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/00700-00799.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/00700-00799.xml
index e7d05378311a416f6cb56420d281496e5db396d0..c728bdc493b2fcbc7b60b0493f6fed1e1d6ce192 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/00700-00799.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/00700-00799.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="700" levels="1" name="Divine Healer Group Heal">
 		<set name="aggroPoints" val="400" />
 		<set name="hitTime" val="7000" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/00800-00899.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/00800-00899.xml
index 7a654bd45846a8483b303d9cac095df6c6c2a5a0..0d747964d582a7abaf691579f9a3a1f7f76678ce 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/00800-00899.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/00800-00899.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="800" levels="3" name="Master Ability - Magic Defense">
 		<!-- Confirmed CT2.5 -->
 		<table name="#mDef"> 50.4 100.8 151.2 </table>
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/00900-00999.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/00900-00999.xml
index 04395ea84539f21f7e67d0d0a2be93e6e13ca494..605e8d079f44ad5631c47c424cb23322b3aa94ba 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/00900-00999.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/00900-00999.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="900" levels="6" name="Energy Blast">
 		<table name="#mpConsume"> 72 73 74 74 75 75 </table>
 		<table name="#pvpPower"> 5280 5390 5498 5603 5704 5800 </table>
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/01000-01099.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/01000-01099.xml
index 00dcbda2ac37baa69be8ce9bcac254b841c8bbe3..e0ce2341d757aa775dea8784752e847dee164d9a 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/01000-01099.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/01000-01099.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="1001" levels="10" name="Soul Cry" enchantGroup1="1">
 		<!-- Confirmed CT2.5 -->
 		<table name="#enchantMagicLvl"> 76 76 76 77 77 77 78 78 78 79 79 79 80 80 80 81 81 81 82 82 82 83 83 83 84 84 84 85 85 85 </table>
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/01100-01199.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/01100-01199.xml
index faeb52094a6e668f418e10080d46853a01571dfd..eefc6e3d4c411e03a9b2f515b8c65b85f3f09a98 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/01100-01199.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/01100-01199.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="1100" levels="2" name="Chill Flame">
 		<table name="#magicLvl"> 7 14 </table>
 		<table name="#dot"> 27 40 </table>
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/01200-01299.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/01200-01299.xml
index edc180b39717b022d288c9c76d7b5c5eb12cfed2..83ca32baeccb0a1735a081d99f0a8607564766e2 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/01200-01299.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/01200-01299.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="1201" levels="33" name="Dryad Root" enchantGroup1="1" enchantGroup2="1">
 		<table name="#enchantMagicLvl"> 76 76 76 77 77 77 78 78 78 79 79 79 80 80 80 81 81 81 82 82 82 83 83 83 84 84 84 85 85 85 </table>
 		<table name="#ench2mpConsume"> 54 53 52 50 50 49 48 46 46 45 44 44 42 42 41 40 38 38 37 36 34 34 33 33 32 30 30 29 28 26 </table>
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/01300-01399.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/01300-01399.xml
index 7f97ddfc36e5a1eacafb73b252d31f80261f7953..ee47eada79a19dbec71f7a6d2e44e45104c62940 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/01300-01399.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/01300-01399.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="1300" levels="3" name="Servitor Cure">
 		<table name="#mpInitialConsume"> 7 9 11 </table>
 		<table name="#mpConsume"> 28 35 44 </table>
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/01400-01499.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/01400-01499.xml
index 33a168e2b7a10dd8964b95affcdcd2927a3d5f16..e6a263c4cbc64014dd1adff58ee48bea8af12dc4 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/01400-01499.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/01400-01499.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="1400" levels="10" name="Turn Undead" enchantGroup1="1" enchantGroup2="1" enchantGroup3="1" enchantGroup4="1">
 		<!-- CT2.5 retail confirmed -->
 		<table name="#enchantMagicLvl"> 76 76 76 77 77 77 78 78 78 79 79 79 80 80 80 81 81 81 82 82 82 83 83 83 84 84 84 85 85 85 </table>
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/01500-01599.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/01500-01599.xml
index ca2dfda549d738ed896a735fd8b899f129aa9e1f..24ef30f5344292771f3ab4af4f211097ef231401 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/01500-01599.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/01500-01599.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="1500" levels="1" name="Improved Magic">
 		<set name="mpConsume" val="28" />
 		<set name="target" val="TARGET_ONE" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/02000-02099.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/02000-02099.xml
index afe77d5c8c815a16583e21d0579da88de0af2fec..a25920d2a142b31297f385ed18a44ab0190f4f02 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/02000-02099.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/02000-02099.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="2001" levels="1" name="Red Potion">
 		<set name="itemConsumeCount" val="1" />
 		<set name="target" val="TARGET_SELF" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/02100-02199.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/02100-02199.xml
index a2bdd610c523a645d4ee850715414f17aa51fe3c..7114c3c01e78aecff269912f1413b09e702ca41b 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/02100-02199.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/02100-02199.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="2100" levels="1" name="Escape: 1 second">
 		<set name="target" val="TARGET_SELF" />
 		<set name="hitTime" val="1000" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/02200-02299.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/02200-02299.xml
index efd9aec8463c2fe2fe0b7581ecb48ba2ed197415..e0c57e91b37ba7af673eb3641d8dc03462d52061 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/02200-02299.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/02200-02299.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="2200" levels="3" name="Item - Jade Treasure Box">
 		<!-- Confirmed CT2.5 -->
 		<table name="#extractableItems">
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/02300-02399.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/02300-02399.xml
index 45fd69402eef0e6859f34ce1e6acf4ace6a20bb5..738f1cc62f0b054f6cbdfcdff6912391c605819e 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/02300-02399.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/02300-02399.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="2300" levels="1" name="Hair Style Change Potion">
 		<set name="itemConsumeCount" val="1" />
 		<set name="target" val="TARGET_SELF" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/02400-02499.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/02400-02499.xml
index 72f84ce9f65c75729452b34943032117e38a8197..226e278607fefc635fc1f500d67b0bbacc6118d5 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/02400-02499.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/02400-02499.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="2400" levels="1" name="Red Coral Treasure Chest Key">
 		<!-- Confirmed CT2.5 -->
 		<set name="castRange" val="40" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/02500-02599.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/02500-02599.xml
index 7be1010b56573c28655a7aff242b6a5d81542472..ae54be903f545724eaa5f315d2affdd8ff53b41d 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/02500-02599.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/02500-02599.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="2500" levels="1" name="Beast Soulshot Compressed Pack">
 		<!-- Confirmed CT2.5 -->
 		<set name="create_item_count" val="500" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/02600-02699.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/02600-02699.xml
index e48ae7cb19bedf9a9209db45de85eda48f290c78..0366e5ba19b015aaf8adcc3d8708e9d0f1b13cbf 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/02600-02699.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/02600-02699.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="2600" levels="1" name="Gran Kain's Echo Crystal - Theme of Solitude">
 		<set name="itemConsumeCount" val="1" />
 		<set name="isPotion" val="true" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/02700-02799.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/02700-02799.xml
index bc075039108af83c1692f0e6dd698b08d28edaba..83e4cac0273a88b2420cc2e303e1031ce363d9d1 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/02700-02799.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/02700-02799.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="2700" levels="1" name="Giran Dwarf Mercenary">
 		<set name="target" val="TARGET_SELF" />
 		<set name="skillType" val="BUFF" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/02800-02899.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/02800-02899.xml
index d33daa81eb936a69f27a73fc977bc30fd1381acd..899f2d8e16d0f5930eb065874ead4f7097f17813 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/02800-02899.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/02800-02899.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="2800" levels="1" name="Stone of Ease">
 		<set name="itemConsumeCount" val="1" />
 		<set name="isPotion" val="true" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/02900-02999.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/02900-02999.xml
index 449f11d6a0acc332933f08bd85d32fb1e55718b9..736c223cdb82266c11e2fe4b85c7514cb951f35b 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/02900-02999.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/02900-02999.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="2900" levels="1" name="Ancient Herb - Slayer">
 		<set name="staticHitTime" val="true" />
 		<set name="target" val="TARGET_SELF" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/03000-03099.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/03000-03099.xml
index a7f00acf448d640fbf75b60e9cfb1441d4677a1d..d4cb595fe416fff9fa39c00e1d0890026cd3642a 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/03000-03099.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/03000-03099.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="3001" levels="1" name="int_1">
 		<set name="target" val="TARGET_SELF" />
 		<set name="skillType" val="PASSIVE" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/03100-03199.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/03100-03199.xml
index 71915f2a6895708c107d2933dec78a1f6e2a2516..bf856e613657de0aa2becfaa9befe1fd1ad32d24 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/03100-03199.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/03100-03199.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="3100" levels="10" name="Item Skill: Sleep">
 		<table name="#activationChance"> 2 2 2 3 3 3 4 4 5 5 </table>
 		<table name="#triggeredLevel"> 1 2 3 4 5 6 7 8 9 10 </table>
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/03200-03299.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/03200-03299.xml
index 68bef50d30a86f493cf6bbf31b98d4870ccc95c2..84172350d80cde69190441dea755c31713f05ed5 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/03200-03299.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/03200-03299.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="3200" levels="3" name="Item Skill: Spell Refresh">
 		<table name="#mpInitialConsume"> 11 13 14 </table>
 		<table name="#mpConsume"> 43 49 55 </table>
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/03300-03399.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/03300-03399.xml
index 1c4b0c6269666003091f225a44305c92ab6400a4..43bee59432907b67994c81b4e46e82ae9056ece4 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/03300-03399.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/03300-03399.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="3300" levels="1" name="Yellow Talisman of Speed">
 		<!-- Confirmed CT2.5 -->
 		<set name="magicLvl" val="55" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/03400-03499.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/03400-03499.xml
index 3cd8ae9f600852dc9f9f421808b87a0e0c6697b4..89d3d4affa89ed65638d9e7faac9ce0d90804073 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/03400-03499.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/03400-03499.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="3400" levels="1" name="Traits Strengthen Earring">
 		<!-- Confirmed CT2.5 -->
 		<set name="magicLvl" val="80" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/03500-03599.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/03500-03599.xml
index 0d5858d249717bcc793ccaa710c207be06c131f6..9f54e877f46fc9774dcc244d1f00ecd00cd4301b 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/03500-03599.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/03500-03599.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="3500" levels="1" name="Wooden Set">
 		<set name="target" val="TARGET_SELF" />
 		<set name="skillType" val="BUFF" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/03600-03699.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/03600-03699.xml
index 886bf50714a63a480a3db141499937c9cae08f15..fc57328633d0e7913a752cb2440099b68cb69103 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/03600-03699.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/03600-03699.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="3600" levels="10" name="Special Ability: Anger">
 		<!-- Confirmed CT2.5 -->
 		<table name="#magicLvl"> 46 49 52 55 58 61 64 67 75 80 </table>
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/03700-03799.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/03700-03799.xml
index 8d8de728f949cb7f7901f6c00116fa0e2fe646d6..7db19244eb11dfabd2700f20a285d069979679af 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/03700-03799.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/03700-03799.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="3700" levels="1" name="Doom Shield">
 		<!-- Confirmed CT2.5 -->
 		<set name="target" val="TARGET_SELF" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/03800-03899.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/03800-03899.xml
index 5d22d530606af5e446026f4dbcc6e8a59f54cce1..d99ecfcbf4e920a54bac3f947a52727112e88f3f 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/03800-03899.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/03800-03899.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="3800" levels="1" name="Dynasty Stockings">
 		<!-- Confirmed CT2.5 -->
 		<set name="target" val="TARGET_SELF" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/03900-03999.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/03900-03999.xml
index b98f63ec0f2ad2a4d989331fa43df5f33f916220..907c505e2685517464c84bd3e0bef0eaab5d70f3 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/03900-03999.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/03900-03999.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="3900" levels="2" name="Staff of Divine Power">
 		<!-- CT2.5 retail confirmed -->
 		<table name="#magicLvl"> 61 80 </table>
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/04000-04099.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/04000-04099.xml
index a01c6d652a51e9c278d2e866bdb7763945802a13..32787167e9167ccae80d677f793dcf6422989ea1 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/04000-04099.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/04000-04099.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="4001" levels="12" name="NPC Wind Strike">
 		<!-- Freya retail confirmed -->
 		<table name="#power"> 18 26 38 52 68 85 102 110 116 122 126 129 </table>
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/04100-04199.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/04100-04199.xml
index 158a5a20ff7179b5bd8d12fc3424df2e78524901..b481eda0c70453a9b33ac0f96ee3929ed24ce3fe 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/04100-04199.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/04100-04199.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="4100" levels="12" name="NPC Prominence">
 		<!-- Freya retail confirmed -->
 		<table name="#power"> 18 26 38 52 68 85 102 110 116 122 126 129 </table>
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/04200-04299.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/04200-04299.xml
index 5ebe3b0b91aedbd97bf522e4346c422668d6ba66..38b05bcabd9b1418cf658e6686f024bd2e547962 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/04200-04299.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/04200-04299.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="4200" levels="12" name="Decrease Atk. Spd.">
 		<!-- Freya retail confirmed -->
 		<table name="#pAtkSpd"> 0.83 0.8 0.8 0.77 0.77 0.77 0.77 0.77 0.77 0.77 0.77 0.77 </table>
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/04300-04399.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/04300-04399.xml
index d978bdd11c71b79fe618d632d55b82e10f5fd32e..654872ffffbe68401c05fdef720a68f423429fa4 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/04300-04399.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/04300-04399.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="4300" levels="1" name="Race">
 		<!-- Freya retail confirmed -->
 		<!-- Race Giant -->
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/04400-04499.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/04400-04499.xml
index 54a6380fb1e94a423159fdeda4ba00b947eedc26..17900eec42e42dafb5c9cdd97aa39b692c6d8a0c 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/04400-04499.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/04400-04499.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="4400" levels="3" name="Acumen">
 		<!-- Confirmed CT2.5 -->
 		<table name="#abnormalLvl"> 2 3 4 </table>
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/04500-04599.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/04500-04599.xml
index 3576f3173c9a771ec583552cd9e012a29bc0872f..75685ac4881b1b625ddeb3f426f33e46c3218b39 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/04500-04599.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/04500-04599.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="4500" levels="1" name="Treasure Chest - Level 27">
 		<!-- This Skill Is Only For Description In The Client -->
 		<set name="target" val="TARGET_SELF" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/04600-04699.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/04600-04699.xml
index 9bc523f49ad5496964ffb41861eade803ec83625..017eef6b42c9203fb33a60037509a116acfc4aa7 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/04600-04699.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/04600-04699.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="4600" levels="12" name="Reducing P. Def Stun">
 		<table name="#magicLvl"> 10 20 30 40 50 60 70 75 80 85 90 95 </table>
 		<table name="#mpConsume"> 24 39 54 73 94 116 136 144 152 158 161 163 </table>
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/04700-04799.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/04700-04799.xml
index c70b6ba132d971c687dcb3365558934a0f6e4e87..36cb892f75e2b64c46cf36ffbe8590d260e6c9c5 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/04700-04799.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/04700-04799.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="4700" levels="13" name="Gift of Queen">
 		<table name="#magicLvl"> 57 66 75 77 78 79 80 81 82 83 84 85 86 </table>
 		<table name="#mpConsume"> 122 157 194 202 207 212 215 220 224 229 233 237 242 </table>
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/04800-04899.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/04800-04899.xml
index 54d48700a01b3506419279b020e85e920adc51ec..8b1036343fa6dcf97a6a43d077fe16f427b3289e 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/04800-04899.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/04800-04899.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="4800" levels="1" name="Raid Boss - Level 53">
 		<!-- This Skill Is Only For Description In The Client -->
 		<set name="target" val="TARGET_SELF" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/04900-04999.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/04900-04999.xml
index 39b53b6cb8568c343ab8dff684cb2bb40e42708f..ee094312da040269cebee64da60da2b5411fcb20 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/04900-04999.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/04900-04999.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="4900" levels="1" name="Raid Boss - Level 78">
 		<!-- This Skill Is Only For Description In The Client -->
 		<set name="target" val="TARGET_SELF" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/05000-05099.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/05000-05099.xml
index 91541e82726f7748386bc8be5a227bdcc881e6cb..64a8b624a072045453413e173492d1886def5bcc 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/05000-05099.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/05000-05099.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="5000" levels="1" name="Alfred - Super Strike">
 		<!-- CT2.5 retail confirmed -->
 		<set name="mpConsume" val="108" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/05100-05199.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/05100-05199.xml
index 2fa66ad4295d730710c29083bd875ca44df4cff5..708b12c27a1bf02fc47cfa993d11a73a4d250796 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/05100-05199.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/05100-05199.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="5100" levels="1" name="Cancel Capture B">
 		<set name="target" val="TARGET_NONE" />
 		<set name="skillType" val="NOTDONE" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/05200-05299.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/05200-05299.xml
index 358f64b0c344d7920a3d87fbcd153138f281a35d..0bf840ce4967732b3458b78345b2b50ca215a7db 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/05200-05299.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/05200-05299.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="5200" levels="8" name="Pet Recharge">
 		<!-- CT2.5 retail confirmed -->
 		<table name="#magicLvl"> 65 67 69 75 80 85 90 95 </table>
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/05300-05399.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/05300-05399.xml
index ad5849818f9ec37a322b71017a37c0bc5986381b..8273ed91ba9e0b48435f4d87428a02835c6ecc79 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/05300-05399.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/05300-05399.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="5300" levels="9" name="NPC(party) - Physical Range Long Range Attack - Dark">
 		<!-- CT2.5 retail confirmed -->
 		<table name="#mpConsume"> 227 234 240 246 250 252 254 256 259 </table>
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/05400-05499.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/05400-05499.xml
index 927b2d8f690056b01023270542b4f48a19d16ba9..ddd32283bc009584c138c07b448317e90e9f8643 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/05400-05499.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/05400-05499.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="5400" levels="1" name="Presentation - Solar Spark">
 		<!-- Confirmed CT2.5 -->
 		<set name="aggroPoints" val="100" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/05500-05599.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/05500-05599.xml
index 27e1b340318cc259f61986578bb56249958f51a6..6e3a7fa3864e6486b327da21c71a92094c711e40 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/05500-05599.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/05500-05599.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="5500" levels="1" name="Black Dragon Claw">
 		<!-- Confirmed CT2.5 -->
 		<!-- Darion Skills -->
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/05600-05699.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/05600-05699.xml
index 04dea1e0fae5f7bcca33daab2c812b935ab4a39e..36f1bc73731fc15bffe851ade52f3c24e721d819 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/05600-05699.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/05600-05699.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="5600" levels="1" name="Betrayal Mark">
 		<!-- Confirmed CT2.5 -->
 		<!-- set name="castRange" val="900" / -->
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/05700-05799.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/05700-05799.xml
index 279209e943e0b78640320adb71d1d8d6357d5be5..33f43ed2317900a464a59b61e1ba9de64dbbf3dc 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/05700-05799.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/05700-05799.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="5700" levels="7" name="Magic Resistance Decrease">
 		<!-- Lvl 1 - Kamaloka (Labyrinth of the Abyss) 29 -->
 		<!-- Lvl 2 - Kamaloka (Labyrinth of the Abyss) 39 -->
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/05800-05899.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/05800-05899.xml
index ca42ec1d5499135e24f33014577fb8269cc563ed..86e2742630010e1832c64fa4de00c6e85e92c987 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/05800-05899.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/05800-05899.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="5800" levels="1" name="Self-Destruction">
 		<set name="target" val="TARGET_NONE" />
 		<set name="skillType" val="NOTDONE" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/05900-05999.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/05900-05999.xml
index 2eece2fceec7cadbc6e0dbe628748310244a3580..f2eb1852820d9f544e895049d07d84426569f8a1 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/05900-05999.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/05900-05999.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="5900" levels="1" name="Burst of Oblivion">
 		<set name="target" val="TARGET_NONE" />
 		<set name="skillType" val="NOTDONE" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/06000-06099.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/06000-06099.xml
index 8ce44402b096675cde7d831bcf0681c2b917ce6e..35ca9b84525ab703c996dd4cc022f6228aead209 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/06000-06099.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/06000-06099.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="6000" levels="1" name="not_used">
 		<set name="target" val="TARGET_NONE" />
 		<set name="skillType" val="NOTDONE" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/06100-06199.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/06100-06199.xml
index 5e183771d7261bf476b75e9478a9e7eb4fce4118..c16b0fef4bd0c1bb9f39d6b3149f37a6f77e2a84 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/06100-06199.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/06100-06199.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="6100" levels="3" name="Turkey's Choice - Scissors">
 		<set name="target" val="TARGET_SELF" />
 		<set name="skillType" val="DUMMY" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/06200-06299.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/06200-06299.xml
index 275ec14e76745b3ab3b976aa50aea6c2a48f6be7..6f7f8c99670e195812f853a729f1c8eb13b9940d 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/06200-06299.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/06200-06299.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="6200" levels="1" name="NPC Transform Dispel">
 		<set name="target" val="TARGET_ONE" />
 		<set name="skillType" val="TRANSFORMDISPEL" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/06300-06399.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/06300-06399.xml
index 6305d9a7160c07ea7a2810c5ccdd42f996a2dad9..17e22a1c3fa5abf18f1f786676c362021db908aa 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/06300-06399.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/06300-06399.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="6300" levels="1" name="Self-Destruction">
 		<!-- Confirmed CT2.5 -->
 		<!-- Freya Skills -->
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/06400-06499.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/06400-06499.xml
index e55e801b4074403022dad4a29128376b3c49f67a..dc50dbbc0d60284e250dd539824e4239be0941ee 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/06400-06499.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/06400-06499.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="6400" levels="1" name="Cokrakon Dwindling Velocity">
 		<set name="castRange" val="900" />
 		<set name="effectRange" val="1400" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/06500-06599.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/06500-06599.xml
index 01d2c06d2cd7a671264908dc0b3b2f6f00e2be58..db5cf0cd4bc8449956b5005be590c6c062563fe2 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/06500-06599.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/06500-06599.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="6500" levels="28" name="NPC holy shot">
 		<set name="target" val="TARGET_NONE" />
 		<set name="skillType" val="NOTDONE" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/06600-06699.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/06600-06699.xml
index d62b0f9629f29872cc69bfed7a6748887d55a05c..08f5c7e50ab2c8b9e6af530f822c9096b6653238 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/06600-06699.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/06600-06699.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="6600" levels="28" name="NPC earth attack">
 		<set name="target" val="TARGET_NONE" />
 		<set name="skillType" val="NOTDONE" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/06700-06799.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/06700-06799.xml
index cc26fad5a1271cb08d63db45e9d1b7738592c970..99ec1d15493b6157f4720dd5b1c313948caf3b2e 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/06700-06799.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/06700-06799.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="6700" levels="1" name="Ball Trapping Orodriel Agathion Cute Trick">
 		<!-- You can see the summoned spirit's cute tricks. -->
 		<set name="target" val="TARGET_NONE" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/06800-06899.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/06800-06899.xml
index e09b0eb2131d65bcc8277fab9cf6a4117e5af93f..56610be462283b82955d9ace9e8b67c317e40dcc 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/06800-06899.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/06800-06899.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="6800" levels="1" name="Presentation - Yellow Portal Ray">
 		<!-- none -->
 		<set name="target" val="TARGET_NONE" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/06900-06999.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/06900-06999.xml
index 7fbd40b3662978896459018ae0cc11d606b1580b..ba4588c13d35e9807ecd684cc64e0b048700038f 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/06900-06999.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/06900-06999.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="6900" levels="1" name="84 level Raid Boss">
 		<!-- "In order to gather monsters that would protect its territory, Antharas created countless sacrifice victims. The Bleeding Fly was enchanted by the stench of corpses and came up above ground. This nobility of purgatory, who feeds on the blood of hatred and fear, called itself the Gatekeeper of Antharas, and it took its place on one side of the Valley where there is an endless stream of reckless challengers." -->
 		<set name="target" val="TARGET_NONE" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/07000-07099.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/07000-07099.xml
index 5a0dcfb2815531e98e18e8c6865fe3b980134d6b..226ebf30bba3235ebb9f05677676c1e539b9956a 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/07000-07099.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/07000-07099.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="7000" levels="1" name="NPC Default">
 		<set name="target" val="TARGET_SELF" />
 		<set name="skillType" val="NOTDONE" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/08000-08099.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/08000-08099.xml
index dc4ab16d64274817413c309296e55a539fcb1a42..646284ae30629e78050a30f3fa5894125d116a58 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/08000-08099.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/08000-08099.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="8001" levels="1" name="Augment Option - Divine Attack">
 		<!-- CT2.5 retail confirmed -->
 		<set name="magicLvl" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/08100-08199.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/08100-08199.xml
index e61b99ca39446b87e1a8808b8537481dc312e094..48adeb2c25094006af7329364364d55e57b06a57 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/08100-08199.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/08100-08199.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="8100" levels="1" name="Augment Option - Water Attack">
 		<!-- CT2.5 retail confirmed -->
 		<set name="magicLvl" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/08200-08299.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/08200-08299.xml
index 15038e4f8737102f13938f40f80bba14eafbd14b..2479b4aac9dcaddfb7bbd424648e2c266df333cc 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/08200-08299.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/08200-08299.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="8200" levels="1" name="Light Draconic Leather Armor Set - PvP">
 		<set name="target" val="TARGET_SELF" />
 		<set name="skillType" val="BUFF" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/08300-08399.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/08300-08399.xml
index a444a41343a573d5376c8101c2855e6895a3634a..ecf26324383589191c27e83ab7c6f8e39e341751 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/08300-08399.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/08300-08399.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="8300" levels="1" name="Dynasty Sigil">
 		<set name="magicLvl" val="80" />
 		<set name="target" val="TARGET_SELF" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/08400-08499.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/08400-08499.xml
index d06b91f625c7e1cbafb3f43db2454a72c6b8dd60..38766d38fee0054afc91afda68eb234e8b507e1d 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/08400-08499.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/08400-08499.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="8400" levels="1" name="Vorpal Heavy Armor Set">
 		<!-- Confirmed CT2.5 & Updated to H5 -->
 		<set name="magicLvl" val="85" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/08500-08599.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/08500-08599.xml
index 53b4067c3baf9be06b2c858a82f6b906ee5edd52..a5f0ae54935faf7064923ae8d387b9a71dc7ff89 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/08500-08599.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/08500-08599.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="8500" levels="1" name="Pink Talisman - CON">
 		<!-- Confirmed CT2.5 -->
 		<set name="magicLvl" val="55" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/09000-09099.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/09000-09099.xml
index a7be64f335f17b9d28da053978613a8bd8082c9b..207674fd3e29bfc820467f34f102fb4dd18988eb 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/09000-09099.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/09000-09099.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="9000" levels="1" name="PC room private weapon strengthening order sheet - D grade">
 		<set name="target" val="TARGET_NONE" />
 		<set name="skillType" val="NOTDONE" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/09100-09199.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/09100-09199.xml
index d7cf305b5a9c72a064c9be01576a0e7adfecf405..90239ee5a78f77d5f84622e8513cfdafb3e126d9 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/09100-09199.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/09100-09199.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="9100" levels="1" name="Vesper Weapon Box">
 		<!-- Confirmed CT2.5 -->
 		<table name="#extractableItems">
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/14000-14099.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/14000-14099.xml
index bcd3a2dc9b58c82ac8f432b16c2b52ddf92ac560..b2d7354e79ac209e871dce6c8e7627626404aac1 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/14000-14099.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/14000-14099.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="14156" levels="1" name="Snake">
 		<set name="operateType" val="P" />
 		<set name="skillType" val="NOTDONE" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/20000-20099.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/20000-20099.xml
index 2af07e930e7c364b4dcc256fed29039b35d5ff7d..d541fd10cf174c51d56e89a7e8f25c766a3e4b98 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/20000-20099.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/20000-20099.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="20000" levels="1" name="Block Checker Search">
 		<!-- "If you open your heart and look afar, you can find a hidden treasure chest." -->
 		<set name="target" val="TARGET_NONE" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/21000-21099.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/21000-21099.xml
index 8932f45aee2acddb74a35ab01a1fb66a95d1e509..b5e0289cd547569fd95b6e18e890a366d8a3d87f 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/21000-21099.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/21000-21099.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="21000" levels="1" name="Release Seal on Agathion - Majo">
 		<set name="target" val="TARGET_SELF" />
 		<set name="skillType" val="AGATHION" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/21100-21199.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/21100-21199.xml
index be9b988e67fd7c0ae1831c383d062b1ef74a1734..c73d740c2b8f22413e2dfda97696a60a0f76ddfe 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/21100-21199.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/21100-21199.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="21100" levels="1" name="Great Wizard's Soul Power: Brilliance">
 		<!-- For five minutes, the Great Spirit increases M.Atk. by 20%, M.Def. by 20% and casting speed by 20%. Decreases MP cost of skills by 5%. -->
 		<set name="target" val="TARGET_SELF" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/21200-21299.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/21200-21299.xml
index 23b862015086fe287d12798ff97605e09e17ea22..41f9651512ab72cbc3f1866d0e6636abab8ebded 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/21200-21299.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/21200-21299.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="21200" levels="1" name="Age of the Three Kingdoms">
 		<!-- For 20 minutes, raises moving speed by 33, Atk. Spd. by 33%, M. Atk. by 65%, Casting Spd. by 30%, physical P. Atk., and physical P. Def. by 15%. Reuse Delay 2 hours. Consumes 1 Proof of Friendship upon skill use. -->
 		<set name="target" val="TARGET_NONE" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/22000-22099.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/22000-22099.xml
index 9e5267da95fcb1396f451bec041531f30c6b0760..00d65aec7d17c0ec447ed0cfd582910a592812b3 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/22000-22099.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/22000-22099.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="22000" levels="1" name="Spicy Kimchee">
 		<set name="target" val="TARGET_NONE" />
 		<set name="skillType" val="NOTDONE" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/22100-22199.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/22100-22199.xml
index 4d70620663fba2ed010c12dc217766d6cc4a7fb4..63b44e2ba0ce53adc91efed49a688c870edda245 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/22100-22199.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/22100-22199.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="22100" levels="1" name="Soul Scent">
 		<!-- Confirmed CT2.5 -->
 		<set name="castRange" val="400" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/22200-22299.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/22200-22299.xml
index e7a2cc62350a944f22a16f67a91756956b1ad868..9851133bdf45c925c67233ff9301fec4b6f1595f 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/22200-22299.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/22200-22299.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="22200" levels="1" name="Transformation Scroll - Veil Master">
 		<!-- Transformed into a Veil Master. -->
 		<set name="target" val="TARGET_NONE" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/22300-22399.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/22300-22399.xml
index 90a97e80e00787445f9db565b8639aac672d1c5a..2fdd9fc9236805d183cdaaf8a45adbb7f76a4292 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/22300-22399.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/22300-22399.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="22300" levels="1" name="Fantasy Isle Magic">
 		<!-- "Magic obtained from Fantasy Isle. Increases Speed by 30%, and decreases fall damage when falling from a high place." -->
 		<set name="target" val="TARGET_NONE" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/22400-22499.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/22400-22499.xml
index bd3a004147bb1114bc1827570da8f704d0abac99..99ab4d600a66bec3e3ab23c0daa0bdf54258a8a7 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/22400-22499.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/22400-22499.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="22400" levels="1" name="Transformation Scroll - Zaken">
 		<!-- Desciption: Transformed into Zaken. -->
 		<set name="operateType" val="P" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/23000-23099.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/23000-23099.xml
index bdd44f2385419c30c725ae1ad34f91709eab53af..d33043dc8c62ad89110de7c99538f68b0e8e3047 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/23000-23099.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/23000-23099.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="23000" levels="1" name="Majo Agathion Cute Trick">
 		<set name="target" val="TARGET_SELF" />
 		<set name="skillType" val="DUMMY" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/23100-23199.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/23100-23199.xml
index fc860fbfc0de486756af007b958b1eaccaba1fc0..d9a948ac7c9063e061d39623607cd1f3d95c6aff 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/23100-23199.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/23100-23199.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="23100" levels="1" name="Fourth Consecutive Win">
 		<set name="target" val="TARGET_NONE" />
 		<set name="skillType" val="NOTDONE" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/23200-23299.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/23200-23299.xml
index 0a14ffefe117b0ff00176429eb6fb29ceeea02ce..00e3887bef4ca0a223a3206778fa69d850811f70 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/23200-23299.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/23200-23299.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="23200" levels="1" name="Ball Trapping Penalty Kick Agathion Special Skill - Soccer Ball of Cheers">
 		<!-- Confirmed CT2.5 -->
 		<set name="create_item_count" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/23300-23399.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/23300-23399.xml
index 9ec035fdd6c1ca327e1acf273e70811f5c9bd160..534dd898231003d284cc651e11e09a885657af18 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/23300-23399.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/23300-23399.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="23300" levels="1" name="Ghost Piercing">
 		<!-- FIXME: Chance & Reuse values are guessed -->
 		<set name="element" val="5" /> <!-- Dark -->
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/26000-26099.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/26000-26099.xml
index eeada3528489dbe40d3231c21709d40aea8f9f50..b3e6b1481d111d211effe536c7db2162597d18b9 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/26000-26099.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/26000-26099.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../xsd/skills.xsd">
 	<skill id="26000" levels="1" name="Small fortuna box">
 		<!-- Confirmed CT2.5 -->
 		<table name="#extractableItems">
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/custom/10000-10099.xml b/L2J_DataPack_BETA/dist/game/data/stats/skills/custom/10000-10099.xml
index 921f84bbcca7262332a6126338b4a3495b28763c..b152ff11ebfa9100941b12ec17914a971f62d338 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/skills/custom/10000-10099.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/skills/custom/10000-10099.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../skills.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../xsd/skills.xsd">
 	<skill id="10000" levels="1" name="Mana Drug">
 		<set name="displayId" val="2288" />
 		<set name="itemConsumeId" val="726" />
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/statBonus.xml b/L2J_DataPack_BETA/dist/game/data/stats/statBonus.xml
index 9385669ec6b7e596531d688c9b0cacdf9e01f711..3e46d5cb106e4b7232acdd41e842884ad20f332a 100644
--- a/L2J_DataPack_BETA/dist/game/data/stats/statBonus.xml
+++ b/L2J_DataPack_BETA/dist/game/data/stats/statBonus.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="statBonus.xsd">
+<list xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/statBonus.xsd">
 	<STR>
 		<!-- 1.036^(STR-34.845) -->
 		<stat value="0" bonus="0.29" /> <!-- Not Needed -->
diff --git a/L2J_DataPack_BETA/dist/game/data/ItemAuctions.xsd b/L2J_DataPack_BETA/dist/game/data/xsd/ItemAuctions.xsd
similarity index 100%
rename from L2J_DataPack_BETA/dist/game/data/ItemAuctions.xsd
rename to L2J_DataPack_BETA/dist/game/data/xsd/ItemAuctions.xsd
diff --git a/L2J_DataPack_BETA/dist/game/data/mapregion/MapRegion.xsd b/L2J_DataPack_BETA/dist/game/data/xsd/MapRegion.xsd
similarity index 100%
rename from L2J_DataPack_BETA/dist/game/data/mapregion/MapRegion.xsd
rename to L2J_DataPack_BETA/dist/game/data/xsd/MapRegion.xsd
diff --git a/L2J_DataPack_BETA/dist/game/data/MerchantPriceConfig.xsd b/L2J_DataPack_BETA/dist/game/data/xsd/MerchantPriceConfig.xsd
similarity index 100%
rename from L2J_DataPack_BETA/dist/game/data/MerchantPriceConfig.xsd
rename to L2J_DataPack_BETA/dist/game/data/xsd/MerchantPriceConfig.xsd
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/npc/PetData.xsd b/L2J_DataPack_BETA/dist/game/data/xsd/PetData.xsd
similarity index 100%
rename from L2J_DataPack_BETA/dist/game/data/stats/npc/PetData.xsd
rename to L2J_DataPack_BETA/dist/game/data/xsd/PetData.xsd
diff --git a/L2J_DataPack_BETA/dist/game/data/Routes.xsd b/L2J_DataPack_BETA/dist/game/data/xsd/Routes.xsd
similarity index 100%
rename from L2J_DataPack_BETA/dist/game/data/Routes.xsd
rename to L2J_DataPack_BETA/dist/game/data/xsd/Routes.xsd
diff --git a/L2J_DataPack_BETA/dist/game/data/WalkerRoutes.xsd b/L2J_DataPack_BETA/dist/game/data/xsd/WalkerRoutes.xsd
similarity index 100%
rename from L2J_DataPack_BETA/dist/game/data/WalkerRoutes.xsd
rename to L2J_DataPack_BETA/dist/game/data/xsd/WalkerRoutes.xsd
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/augmentation/augmentation_skillmap.xsd b/L2J_DataPack_BETA/dist/game/data/xsd/augmentation_skillmap.xsd
similarity index 100%
rename from L2J_DataPack_BETA/dist/game/data/stats/augmentation/augmentation_skillmap.xsd
rename to L2J_DataPack_BETA/dist/game/data/xsd/augmentation_skillmap.xsd
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/augmentation/augmentation_stats.xsd b/L2J_DataPack_BETA/dist/game/data/xsd/augmentation_stats.xsd
similarity index 100%
rename from L2J_DataPack_BETA/dist/game/data/stats/augmentation/augmentation_stats.xsd
rename to L2J_DataPack_BETA/dist/game/data/xsd/augmentation_stats.xsd
diff --git a/L2J_DataPack_BETA/dist/game/data/cursedWeapons.xsd b/L2J_DataPack_BETA/dist/game/data/xsd/cursedWeapons.xsd
similarity index 100%
rename from L2J_DataPack_BETA/dist/game/data/cursedWeapons.xsd
rename to L2J_DataPack_BETA/dist/game/data/xsd/cursedWeapons.xsd
diff --git a/L2J_DataPack_BETA/dist/game/data/dimensionalRift.xsd b/L2J_DataPack_BETA/dist/game/data/xsd/dimensionalRift.xsd
similarity index 100%
rename from L2J_DataPack_BETA/dist/game/data/dimensionalRift.xsd
rename to L2J_DataPack_BETA/dist/game/data/xsd/dimensionalRift.xsd
diff --git a/L2J_DataPack_BETA/dist/game/data/enchantData.xsd b/L2J_DataPack_BETA/dist/game/data/xsd/enchantData.xsd
similarity index 100%
rename from L2J_DataPack_BETA/dist/game/data/enchantData.xsd
rename to L2J_DataPack_BETA/dist/game/data/xsd/enchantData.xsd
diff --git a/L2J_DataPack_BETA/dist/game/data/enchantHPBonus.xsd b/L2J_DataPack_BETA/dist/game/data/xsd/enchantHPBonus.xsd
similarity index 100%
rename from L2J_DataPack_BETA/dist/game/data/enchantHPBonus.xsd
rename to L2J_DataPack_BETA/dist/game/data/xsd/enchantHPBonus.xsd
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/experience.xsd b/L2J_DataPack_BETA/dist/game/data/xsd/experience.xsd
similarity index 100%
rename from L2J_DataPack_BETA/dist/game/data/stats/experience.xsd
rename to L2J_DataPack_BETA/dist/game/data/xsd/experience.xsd
diff --git a/L2J_DataPack_BETA/dist/game/data/hellboundTrustPoints.xsd b/L2J_DataPack_BETA/dist/game/data/xsd/hellboundTrustPoints.xsd
similarity index 100%
rename from L2J_DataPack_BETA/dist/game/data/hellboundTrustPoints.xsd
rename to L2J_DataPack_BETA/dist/game/data/xsd/hellboundTrustPoints.xsd
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/hitConditionBonus.xsd b/L2J_DataPack_BETA/dist/game/data/xsd/hitConditionBonus.xsd
similarity index 100%
rename from L2J_DataPack_BETA/dist/game/data/stats/hitConditionBonus.xsd
rename to L2J_DataPack_BETA/dist/game/data/xsd/hitConditionBonus.xsd
diff --git a/L2J_DataPack_BETA/dist/game/data/instances/instance.xsd b/L2J_DataPack_BETA/dist/game/data/xsd/instance.xsd
similarity index 100%
rename from L2J_DataPack_BETA/dist/game/data/instances/instance.xsd
rename to L2J_DataPack_BETA/dist/game/data/xsd/instance.xsd
diff --git a/L2J_DataPack_BETA/dist/game/data/instancenames.xsd b/L2J_DataPack_BETA/dist/game/data/xsd/instancenames.xsd
similarity index 100%
rename from L2J_DataPack_BETA/dist/game/data/instancenames.xsd
rename to L2J_DataPack_BETA/dist/game/data/xsd/instancenames.xsd
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/items/items.xsd b/L2J_DataPack_BETA/dist/game/data/xsd/items.xsd
similarity index 100%
rename from L2J_DataPack_BETA/dist/game/data/stats/items/items.xsd
rename to L2J_DataPack_BETA/dist/game/data/xsd/items.xsd
diff --git a/L2J_DataPack_BETA/dist/game/data/levelUpCrystalData.xsd b/L2J_DataPack_BETA/dist/game/data/xsd/levelUpCrystalData.xsd
similarity index 100%
rename from L2J_DataPack_BETA/dist/game/data/levelUpCrystalData.xsd
rename to L2J_DataPack_BETA/dist/game/data/xsd/levelUpCrystalData.xsd
diff --git a/L2J_DataPack_BETA/dist/game/data/multisell/multisell.xsd b/L2J_DataPack_BETA/dist/game/data/xsd/multisell.xsd
similarity index 100%
rename from L2J_DataPack_BETA/dist/game/data/multisell/multisell.xsd
rename to L2J_DataPack_BETA/dist/game/data/xsd/multisell.xsd
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/chars/pcBaseStats.xsd b/L2J_DataPack_BETA/dist/game/data/xsd/pcBaseStats.xsd
similarity index 100%
rename from L2J_DataPack_BETA/dist/game/data/stats/chars/pcBaseStats.xsd
rename to L2J_DataPack_BETA/dist/game/data/xsd/pcBaseStats.xsd
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/chars/pcBreathBonus.xsd b/L2J_DataPack_BETA/dist/game/data/xsd/pcBreathBonus.xsd
similarity index 100%
rename from L2J_DataPack_BETA/dist/game/data/stats/chars/pcBreathBonus.xsd
rename to L2J_DataPack_BETA/dist/game/data/xsd/pcBreathBonus.xsd
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/chars/pcCollision.xsd b/L2J_DataPack_BETA/dist/game/data/xsd/pcCollision.xsd
similarity index 100%
rename from L2J_DataPack_BETA/dist/game/data/stats/chars/pcCollision.xsd
rename to L2J_DataPack_BETA/dist/game/data/xsd/pcCollision.xsd
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/chars/pcKarmaIncrease.xsd b/L2J_DataPack_BETA/dist/game/data/xsd/pcKarmaIncrease.xsd
similarity index 100%
rename from L2J_DataPack_BETA/dist/game/data/stats/chars/pcKarmaIncrease.xsd
rename to L2J_DataPack_BETA/dist/game/data/xsd/pcKarmaIncrease.xsd
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/chars/pcKarmaIncreaseConstant.xsd b/L2J_DataPack_BETA/dist/game/data/xsd/pcKarmaIncreaseConstant.xsd
similarity index 100%
rename from L2J_DataPack_BETA/dist/game/data/stats/chars/pcKarmaIncreaseConstant.xsd
rename to L2J_DataPack_BETA/dist/game/data/xsd/pcKarmaIncreaseConstant.xsd
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/chars/pcSafeFallHeight.xsd b/L2J_DataPack_BETA/dist/game/data/xsd/pcSafeFallHeight.xsd
similarity index 100%
rename from L2J_DataPack_BETA/dist/game/data/stats/chars/pcSafeFallHeight.xsd
rename to L2J_DataPack_BETA/dist/game/data/xsd/pcSafeFallHeight.xsd
diff --git a/L2J_DataPack_BETA/dist/game/data/recipes.xsd b/L2J_DataPack_BETA/dist/game/data/xsd/recipes.xsd
similarity index 100%
rename from L2J_DataPack_BETA/dist/game/data/recipes.xsd
rename to L2J_DataPack_BETA/dist/game/data/xsd/recipes.xsd
diff --git a/L2J_DataPack_BETA/dist/game/data/seeds.xsd b/L2J_DataPack_BETA/dist/game/data/xsd/seeds.xsd
similarity index 100%
rename from L2J_DataPack_BETA/dist/game/data/seeds.xsd
rename to L2J_DataPack_BETA/dist/game/data/xsd/seeds.xsd
diff --git a/L2J_DataPack_BETA/dist/game/data/skillTrees/skillTrees.xsd b/L2J_DataPack_BETA/dist/game/data/xsd/skillTrees.xsd
similarity index 100%
rename from L2J_DataPack_BETA/dist/game/data/skillTrees/skillTrees.xsd
rename to L2J_DataPack_BETA/dist/game/data/xsd/skillTrees.xsd
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/skills/skills.xsd b/L2J_DataPack_BETA/dist/game/data/xsd/skills.xsd
similarity index 100%
rename from L2J_DataPack_BETA/dist/game/data/stats/skills/skills.xsd
rename to L2J_DataPack_BETA/dist/game/data/xsd/skills.xsd
diff --git a/L2J_DataPack_BETA/dist/game/data/spawnZones/spawnZones.xsd b/L2J_DataPack_BETA/dist/game/data/xsd/spawnZones.xsd
similarity index 100%
rename from L2J_DataPack_BETA/dist/game/data/spawnZones/spawnZones.xsd
rename to L2J_DataPack_BETA/dist/game/data/xsd/spawnZones.xsd
diff --git a/L2J_DataPack_BETA/dist/game/data/stats/statBonus.xsd b/L2J_DataPack_BETA/dist/game/data/xsd/statBonus.xsd
similarity index 100%
rename from L2J_DataPack_BETA/dist/game/data/stats/statBonus.xsd
rename to L2J_DataPack_BETA/dist/game/data/xsd/statBonus.xsd
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/zones.xsd b/L2J_DataPack_BETA/dist/game/data/xsd/zones.xsd
similarity index 100%
rename from L2J_DataPack_BETA/dist/game/data/zones/zones.xsd
rename to L2J_DataPack_BETA/dist/game/data/xsd/zones.xsd
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/castle_hq_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/castle_hq_zones.xml
index 21310b9720180cc16f1f3efa1d0c3dcc19aabebf..34b24549af71cb343ae02537c153bec57e0ab1ba 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/castle_hq_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/castle_hq_zones.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- Castle HQ Zones -->
 	<!-- Gludio Casle HQ Zones -->
 	<zone name="gludio_castle_headquarter_territory1" type="HqZone" shape="NPoly" minZ="-4484" maxZ="3515">
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/castle_siege_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/castle_siege_zones.xml
index f225e53cc14489a4f9a2197cc6ec725f67213f6b..9d9fe9e073708fa4e52b21d47c73669723df529a 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/castle_siege_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/castle_siege_zones.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- Castle Siege Zones -->
 	<zone name="gludio_castle_battlefield_territory " type="SiegeZone" shape="NPoly" minZ="-4448" maxZ="3551">
 		<stat name="castleId" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/castle_teleport_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/castle_teleport_zones.xml
index 10edb143b0e2fbbd5951253807e79e9d05c03386..47e0d1be0daaa53b3d90931d659511933d34a286 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/castle_teleport_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/castle_teleport_zones.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- Castle Teleport Zones -->
 	<zone name="gludio_castle_owner_restart_territory" type="ResidenceTeleportZone" shape="NPoly" minZ="-1840" maxZ="-1540">
 		<stat name="residenceId" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/castle_trap_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/castle_trap_zones.xml
index b94f3e67127a0cef1068de61d2911d10baddc798..c53349fb628f36d00d65039bdeeab1f6078cc2bf 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/castle_trap_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/castle_trap_zones.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- Castle Trap Zones -->
 	<zone name="aden_slow_8" type="SwampZone" shape="NPoly" minZ="-560" maxZ="-360"> <!-- [24_18] -->
 		<stat name="move_bonus" val="-80" />
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/castle_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/castle_zones.xml
index 0048cdcf57ff212b26fece960c71890ef9c33092..2c6e6d655cb5066d2eed209416c1a6d9df59514e 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/castle_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/castle_zones.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- Castle Zones -->
 	<zone name="gludio_castle" type="CastleZone" shape="NPoly" minZ="-4452" maxZ="3547">
 		<stat name="castleId" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/clan_hall_hq_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/clan_hall_hq_zones.xml
index 788bf9a64bb370b73233c191a4a47cd157caa606..85b7415468607917f458f8385bf8e29adb0807d5 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/clan_hall_hq_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/clan_hall_hq_zones.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- Clan Hall HQ Zones -->
 	<zone name="devastated_castle_headquarter_territory" type="HqZone" shape="NPoly" minZ="-2405" maxZ="595">
 		<stat name="clanHallId" val="34" />
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/clan_hall_siege_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/clan_hall_siege_zones.xml
index bc5df59c3e871dbbca83b6705caf67fde74bcbef..8960e33e7d457ee3684ed0a175db21d4a3dcb1d5 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/clan_hall_siege_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/clan_hall_siege_zones.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- Clan Hall Siege Zones -->
 	<zone name="partisan_agit001" type="SiegeZone" shape="NPoly" minZ="-2344" maxZ="-1544">
 		<stat name="clanHallId" val="21" />
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/clan_hall_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/clan_hall_zones.xml
index 8b737ed09b45d699410b73f1b9f45021a6ecbf87..69ea5a96630fdc3e8076067e194f7ed8f8d4696f 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/clan_hall_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/clan_hall_zones.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- Clan Hall Zones -->
 	<zone name="partisan_agit001" type="SiegableHallZone" shape="NPoly" minZ="-2104" maxZ="-1104">
 		<stat name="clanHallId" val="21" />
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/clanhall_teleport_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/clanhall_teleport_zones.xml
index 1123d7ffecaf969c5b12480b4e47aa2b85f41331..79a2f8b2010b708f9ef6a0a9ee3a488f7884f656 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/clanhall_teleport_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/clanhall_teleport_zones.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- Clan Hall Teleport Zones -->
 	<zone name="bandit_stronghold_restart_territory_1" type="ResidenceHallTeleportZone" shape="NPoly" minZ="-1814" maxZ="-1814">
 		<stat name="residenceId" val="35" />
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/cleft_zone.xml b/L2J_DataPack_BETA/dist/game/data/zones/cleft_zone.xml
index bb169eb11c08639fb2102dbcf44cd054b5065847..a92cc822b9ced313db2a4af27dad1fb57c6092a4 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/cleft_zone.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/cleft_zone.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!-- TODO: Require Support -->
-<list enabled="false" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="false" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- Cleft Zones -->
 	<zone name="cleft_zone_territory" type="CleftZone" shape="NPoly" minZ="-4274" maxZ="15796">
 		<node X="-217824" Y="235786" />
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/custom_boss_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/custom_boss_zones.xml
index c8e66c6151e5470cfc66304d26b86d629f63508d..a271f0b58663776052b2280f2d7e5a6118ada044 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/custom_boss_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/custom_boss_zones.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- Boss Zones -->
 	<zone name="Zaken Boss" id="12000" type="BossZone" shape="NPoly" minZ="-4815" maxZ="-315">
 		<stat name="default_enabled" val="false" />
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/custom_no_store_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/custom_no_store_zones.xml
index 349e58b9c94e62006d8e48a712d599d4588c77c5..1617620deb9f8a6c36fb12f34e4c7c85b2f7238e 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/custom_no_store_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/custom_no_store_zones.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="false" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="false" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- Custom No Store Zones -->
 	<!-- Giran zones coords contributed by Nekys -->
 	<zone name="Giran northern coridor west" type="NoStoreZone" shape="Cuboid" minZ="-3400" maxZ="-3550">
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/custom_script_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/custom_script_zones.xml
index 0643fad7c0fb3f2c52300a52ffdf1cdbbfa0e1ff..a619778a46a6f302dfca901cc12e33c2ce23899b 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/custom_script_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/custom_script_zones.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- Custom Script Zones -->
 	<zone name="Emerald Square 1st Secret Room" id="20105" type="ScriptZone" shape="Cuboid" minZ="-11900" maxZ="-11800">
 		<node X="144175" Y="142396" />
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/custom_town_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/custom_town_zones.xml
index d6496493a14f54b50b7a70560c6e6f8b14f29794..44790c6dbfae73f1ca7637082770e15e7842843e 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/custom_town_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/custom_town_zones.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- NOTE: Don't Remove IDs from Town zones due are used for "MerchantPriceConfig" to determine tax -->
 	<!-- Town Zones -->
 	<zone name="Giran Castle Town" id="11020" type="TownZone" shape="NPoly" minZ="-3800" maxZ="-3300">
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/damage_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/damage_zones.xml
index 8f41572e1b0ec45bcd12c857cfa120e9be91de52..288da450663ea5343ae82ade1890a5686dfd1ca3 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/damage_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/damage_zones.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- Damage Zones -->
 	<!-- Cruma (Damage Zone) -->
 	<zone name="cruma_boss_damage_zone" type="DamageZone" shape="NPoly" minZ="-6519" maxZ="-6319"> <!-- [20_21] -->
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/devil_isle_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/devil_isle_zones.xml
index 7dc88c788cf0a0880e7dce51a3bdfed5d086d802..7f37530a1345573b916224dd317287b472f94cd5 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/devil_isle_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/devil_isle_zones.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- Devil Isle Zones -->
 	<!-- Physical Damage -->
 	<zone name="devil_damage_001" type="DamageZone" shape="NPoly" minZ="-4048" maxZ="-3848"> <!-- [21_24] -->
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/effect_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/effect_zones.xml
index 480ec5965cf9041498574cf25095f4e2a5c13054..c53ff91374cc62b6650a0b3c46c692b680e5fb44 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/effect_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/effect_zones.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- Effect Zones -->
 	<!-- Sea of Spores -->
 	<zone name="spore_boss_poison_zone" type="EffectZone" shape="NPoly" minZ="-4468" maxZ="-4118"> <!-- [21_18] -->
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/elven_mother_tree_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/elven_mother_tree_zones.xml
index 2e9e5202b1cf0066c512550f19ba804a78f2438f..84d5ee60b091032c80d5f3d728088a49611bc85d 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/elven_mother_tree_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/elven_mother_tree_zones.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- Elven Mother Tree Zones -->
 	<zone name="mother_tree_start_zone" type="MotherTreeZone" shape="NPoly" minZ="-3550" maxZ="-3350"> <!-- [21_19] -->
 		<stat name="HpRegenBonus" val="2" />
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/fishing_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/fishing_zones.xml
index fecb988aa479c3631cde87cd728c6660c1aa296c..757a2896dd286cedb7b5aea2370e53f5d38199ce 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/fishing_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/fishing_zones.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- Fishing Zones -->
 	<zone name="fishing_place_1" type="FishingZone" shape="NPoly" minZ="-3634" maxZ="-3434">
 		<node X="141249" Y="-109636" />
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/fortress_hq_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/fortress_hq_zones.xml
index 941b63a46a7c75d5759fa634d24f899eac2f0911..22af6690fffc710947d4f27646dd898c48e2597b 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/fortress_hq_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/fortress_hq_zones.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- Fortress HQ Zones -->
 	<zone name="gludio_fort_a_headquarter_territory" type="HqZone" shape="NPoly" minZ="-3950" maxZ="1050">
 		<stat name="fortId" val="101" />
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/fortress_siege_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/fortress_siege_zones.xml
index 00fcc09aa6c5689743ab28d1409048e334812711..b6a1641e5a5b9f7ca1be0846e24ec414e4582a0e 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/fortress_siege_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/fortress_siege_zones.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- Fortress Siege Zones -->
 	<zone name="gludio_fort_a" type="SiegeZone" shape="NPoly" minZ="-3950" maxZ="1050">
 		<stat name="fortId" val="101" />
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/fortress_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/fortress_zones.xml
index bca282e576e695332f1fd0bb1a538c0e5823866f..1c295650199c63a5278ae9ece6819b4297513b79 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/fortress_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/fortress_zones.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- Fortress Zones -->
 	<zone name="gludio_fort_a" type="FortZone" shape="NPoly" minZ="-3800" maxZ="1200">
 		<stat name="fortId" val="101" />
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/gm_room_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/gm_room_zones.xml
index ab67820ed3931617ea86be9e7868a15687427b9d..5689044cdbb6c3bfac347fcd115c2e3661b630d4 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/gm_room_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/gm_room_zones.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- GM Room Zones -->
 	<zone name="gm_room_solo1" type="JailZone" shape="NPoly" minZ="-3049" maxZ="-2849"> <!-- [16_10] -->
 		<node X="-116299" Y="-251426" />
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/h5_olympiad_stadium_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/h5_olympiad_stadium_zones.xml
index 8d0d31f3ba7c038383f09d906899a181089273d1..9af6bf59250e686021193540ea79801901a99699 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/h5_olympiad_stadium_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/h5_olympiad_stadium_zones.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- H5 Olympiad Stadium Zones -->
 	<zone name="Grassy Arena" type="OlympiadStadiumZone" shape="Cylinder" minZ="-3351" maxZ="1149" rad="2000">
 		<stat name="instanceTemplate" val="OlympiadGrassyArena.xml" />
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/krateis_cube_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/krateis_cube_zones.xml
index 649d19c1e2383c666f1b2ef99fa95963281d1c52..9f93a61475f7c1f52904252833a489746cc9f327 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/krateis_cube_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/krateis_cube_zones.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- Katei's Cube Zones -->
 	<zone name="crataer_race1" type="PeaceZone" shape="NPoly" minZ="-8355" maxZ="-8105"> <!-- [17_17] -->
 		<node X="-87901" Y="-17029" />
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/landing_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/landing_zones.xml
index 857a9523f9de49e0907da9164ba7f617a7b5c60b..d154700fe7020991481ae48260a60e9d10e5a550 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/landing_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/landing_zones.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- Landing Zones -->
 	<!-- 14_24_seed_of_infinity -->
 	<zone name="14_24_seed_of_infinity_1" type="LandingZone" shape="NPoly" minZ="4251" maxZ="4601">
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/no_bookmark_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/no_bookmark_zones.xml
index 6c1db8c4e704978444ee03c702bd0d40d33397c6..b637acfc8c3241334790e15061d4efc44e999537 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/no_bookmark_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/no_bookmark_zones.xml
@@ -1,4 +1,4 @@
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- No Bookmark Zones -->
 	<zone name="no_boormark_boss_area_valakas" type="ConditionZone" shape="NPoly" minZ="-3753" maxZ="32767">
 		<stat name="NoBookmark" val="true" />
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/no_drop_item_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/no_drop_item_zones.xml
index 921ee53ba080d12596bed539232c172a07b149ae..36e56febe29eac95a315ddfa29759e852463763e 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/no_drop_item_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/no_drop_item_zones.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- No Drop Item Zones -->
 	<!-- Steel's Star B Tower -->
 	<zone name="b_tower_bascule_bridge" type="ConditionZone" shape="NPoly" minZ="10956" maxZ="11956">
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/no_landing_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/no_landing_zones.xml
index e946a4fb7265913c9607634cf73198ef08fbea4f..c4fb32885ac2142036af22c1afb4dde39722a43b 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/no_landing_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/no_landing_zones.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- No Landing Zones -->
 	<zone name="boss_area_antaras" type="NoLandingZone" shape="NPoly" minZ="-4096" maxZ="-3896">
 		<node X="-58026" Y="-190958" />
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/no_restart_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/no_restart_zones.xml
index 6dfd788e8cd1f77aad29459e7b04759a14fde667..17d5f1afb9521fb869f35cdf622a56a976182d63 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/no_restart_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/no_restart_zones.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- No Restart Zones -->
 	<zone name="zaken_no_restart" type="NoRestartZone" shape="NPoly" minZ="-4815" maxZ="-315"> <!-- 21_24 -->
 		<stat name="restartTime" val="1800" />
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/no_summon_friend_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/no_summon_friend_zones.xml
index aa7c2a43bf746392881da48a8f986f4cdc94fa23..2323b0f38de3112256c3ff146ca59b69edc23a60 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/no_summon_friend_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/no_summon_friend_zones.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<zone name="oracle_of_dusk_waitroom" type="NoSummonFriendZone" shape="NPoly" minZ="-5383" maxZ="-4883">
 		<node X="-82064" Y="85608" />
 		<node X="-75832" Y="85626" />
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/peace_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/peace_zones.xml
index 9e085e8d71d44fddcf6322dae7bf52f7b181d901..b4cb84fd7a000e5083077f1bccdaf7c0faea0ebb 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/peace_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/peace_zones.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- Peace Zones -->
 	<zone name="talking_island_town_peace_zone1" type="PeaceZone" shape="NPoly" minZ="-3966" maxZ="-3466"> <!-- [17_25] -->
 		<node X="-84028" Y="239722" />
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/plains_of_the_lizardmen_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/plains_of_the_lizardmen_zones.xml
index 2495e4f4b0bca1576e9f61cf801d5480806236bd..75a47c494e7c2f758673a14627c9e2ce249e104d 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/plains_of_the_lizardmen_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/plains_of_the_lizardmen_zones.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- Plains of the Lizardmen Zones -->
 	<zone name="oren21_2220_a01_1" type="EffectZone" shape="NPoly" minZ="-3764" maxZ="-3464">
 		<stat name="chance" val="100" />
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/pvp_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/pvp_zones.xml
index 176501a3f4591cfe86344b4c2f542d71e2a115f3..497479fdf7c606b1138b9a3b84a7f50b585d4e6b 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/pvp_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/pvp_zones.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- PVP Zones -->
 	<zone name="dion_monster_pvp" type="ArenaZone" shape="NPoly" minZ="-3596" maxZ="0"> <!-- [20_23] -->
 		<node X="11947" Y="183019" />
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/respawn_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/respawn_zones.xml
index 6074b2287fedaad17b60952a7f95ed96a180f8d4..0e62b13d37650c38bcb21b12093590b63da77c22 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/respawn_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/respawn_zones.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<zone name="monster_race_0" type="RespawnZone" shape="NPoly" minZ="-3596" maxZ="-3396">
 		<node X="11712" Y="181566" />
 		<node X="14407" Y="181566" />
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/ssq_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/ssq_zones.xml
index f010ba6cd3b1c1cda78ec90b4a26aae40e015c5c..67bdb30407db9d0a8b7ec14a97ed7161aa3dd8c8 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/ssq_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/ssq_zones.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- SSQ Main Event -->
 	<!-- Oracle of Dusk (No Restart Zones) -->
 	<zone name="ssq_no_res_1720_01" type="NoRestartZone" shape="NPoly" minZ="-5200" maxZ="-5000">
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/swamp_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/swamp_zones.xml
index ad9ee76d667acb39fd2ec1cdd0dea1f319891d20..182fa661b09480c4b0cfef89ecf9a114533b4055 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/swamp_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/swamp_zones.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- Swamp Zones -->
 	<!-- Sea of Spores (Swamp Zone) -->
 	<zone name="spore_boss_swamp_zone" type="SwampZone" shape="NPoly" minZ="-4468" maxZ="-4118"> <!-- [21_18] -->
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/tax_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/tax_zones.xml
index 8adf98131503b35cb3ba78c6ec45db99c8e29ff2..79444c6f2e836371fa92ca05584fbc2bd4beec01 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/tax_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/tax_zones.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!-- TODO: Require Support -->
-<list enabled="false" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="false" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- Tax Zones -->
 	<zone name="gludio_1621_001" type="TaxZone" shape="NPoly" minZ="-5036" maxZ="964">
 		<stat name="domainId" val="1" />
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/territory_war_hq_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/territory_war_hq_zones.xml
index 6239aecb09432104dcb21f121fdfed1a3b7ee9dc..44bdee15b0aff36f55c22acb47a65154c6dd8152 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/territory_war_hq_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/territory_war_hq_zones.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- Territory War HQ Zones -->
 	<!-- Gludio Territory War HQ Zones -->
 	<zone name="gludio_dominion_headquarter_territory1" type="HqZone" shape="NPoly" minZ="-4484" maxZ="3515">
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/territory_war_teleport_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/territory_war_teleport_zones.xml
index 5a4c32479d0f2e3df5bbbd8de92024561e5677d0..ac5905ffca8354d69e87b16bc437ee12dd5148f0 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/territory_war_teleport_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/territory_war_teleport_zones.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!-- TODO: Require Support -->
-<list enabled="false" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="false" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- Territory Teleport Zones -->
 	<zone name="gludio_dominion_owner_restart_territory" type="ResidenceTeleportZone" shape="NPoly" minZ="-1840" maxZ="-1540">
 		<stat name="territoryId" val="81" />
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/territory_war_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/territory_war_zones.xml
index 714b64e6f1009b145796294dab349fdf862e7d80..cd5c6db3d79e56f70604fedd0d8907f6c45af767 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/territory_war_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/territory_war_zones.xml
@@ -1,6 +1,6 @@
 <?xml version="1.0" encoding="UTF-8"?>
 <!-- TODO: Require Support -->
-<list enabled="false" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="false" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- Territory War Zones -->
 	<zone name="gludio_dominion" type="TerritoryWarZone" shape="NPoly" minZ="-4452" maxZ="3547">
 		<stat name="territoryId" val="81" />
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/underground_coliseum_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/underground_coliseum_zones.xml
index be5765b127eb52e0a565d46b98a0a223c5d1122f..71d29b5265e69fdb17d7b5ed520e5aa8c65bed88 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/underground_coliseum_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/underground_coliseum_zones.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- Underground Coliseum Zones -->
 	<zone name="17_16_kerthang_001" type="EffectZone" shape="NPoly" minZ="-11592" maxZ="-11192">
 		<stat name="chance" val="100" />
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/water_zones.xml b/L2J_DataPack_BETA/dist/game/data/zones/water_zones.xml
index 9fca5a0569b155ba9d644a1f1d04fcc231e00321..b98da4e31a44d58f87d222f43237a2a28759adc8 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/water_zones.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/water_zones.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- Water Zones -->
 	<zone name="11_23_water1" type="WaterZone" shape="Cuboid" minZ="-4779" maxZ="-3779">
 		<node X="-294912" Y="163839" />
diff --git a/L2J_DataPack_BETA/dist/game/data/zones/zone.xml b/L2J_DataPack_BETA/dist/game/data/zones/zone.xml
index 086a51008ebb75eaf86be35389c3a8758ec30e93..b390e72a619c20310ed78256e321a6eb386c3c00 100644
--- a/L2J_DataPack_BETA/dist/game/data/zones/zone.xml
+++ b/L2J_DataPack_BETA/dist/game/data/zones/zone.xml
@@ -1,5 +1,5 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="zones.xsd">
+<list enabled="true" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/zones.xsd">
 	<!-- Monster Race Track -->
 	<zone name="dion_monster_race1" type="DerbyTrackZone" shape="NPoly" minZ="-3652" maxZ="-3452"> <!-- [20_23] -->
 		<node X="11714" Y="181568" />