diff --git a/L2J_Mobius_8.0_Homunculus/dist/game/config/AdminCommands.xml b/L2J_Mobius_8.0_Homunculus/dist/game/config/AdminCommands.xml
index db645935ab..f6c405db35 100644
--- a/L2J_Mobius_8.0_Homunculus/dist/game/config/AdminCommands.xml
+++ b/L2J_Mobius_8.0_Homunculus/dist/game/config/AdminCommands.xml
@@ -220,6 +220,11 @@
+
+
+
+
+
diff --git a/L2J_Mobius_8.0_Homunculus/dist/game/data/html/admin/enchant.htm b/L2J_Mobius_8.0_Homunculus/dist/game/data/html/admin/enchant.htm
index bd7221aa27..34734af999 100644
--- a/L2J_Mobius_8.0_Homunculus/dist/game/data/html/admin/enchant.htm
+++ b/L2J_Mobius_8.0_Homunculus/dist/game/data/html/admin/enchant.htm
@@ -18,6 +18,12 @@
+ |
+ |
+ |
+ |
+
+
|
|
|
@@ -50,6 +56,8 @@
|
|
+ |
+ |
|
@@ -63,6 +71,12 @@
|
|
+
+ |
+ |
+ |
+ |
+
Attribute Enhancement:
diff --git a/L2J_Mobius_8.0_Homunculus/dist/game/data/scripts/handlers/admincommandhandlers/AdminEnchant.java b/L2J_Mobius_8.0_Homunculus/dist/game/data/scripts/handlers/admincommandhandlers/AdminEnchant.java
index be416b4b4a..c25f4d8a7e 100644
--- a/L2J_Mobius_8.0_Homunculus/dist/game/data/scripts/handlers/admincommandhandlers/AdminEnchant.java
+++ b/L2J_Mobius_8.0_Homunculus/dist/game/data/scripts/handlers/admincommandhandlers/AdminEnchant.java
@@ -51,7 +51,12 @@ public class AdminEnchant implements IAdminCommandHandler
"admin_seten", // 3
"admin_setun", // 0
"admin_setba", // 13
- "admin_setbe",
+ "admin_setbe", // 29
+ "admin_setrb", // 16
+ "admin_setci", // 2
+ "admin_setma", // 3
+ "admin_setbr", // 30
+ "admin_setab", // 37
"admin_enchant"
};
@@ -125,6 +130,26 @@ public class AdminEnchant implements IAdminCommandHandler
{
armorType = Inventory.PAPERDOLL_BELT;
}
+ else if (command.startsWith("admin_setrb"))
+ {
+ armorType = Inventory.PAPERDOLL_RBRACELET;
+ }
+ else if (command.startsWith("admin_setci"))
+ {
+ armorType = Inventory.PAPERDOLL_HAIR2;
+ }
+ else if (command.startsWith("admin_setma"))
+ {
+ armorType = Inventory.PAPERDOLL_HAIR;
+ }
+ else if (command.startsWith("admin_setbr"))
+ {
+ armorType = Inventory.PAPERDOLL_BROOCH;
+ }
+ else if (command.startsWith("admin_setab"))
+ {
+ armorType = Inventory.PAPERDOLL_ARTIFACT_BOOK;
+ }
if (armorType != -1)
{