Index: java/config/other.properties
===================================================================
--- java/config/other.properties (revision 1780)
+++ java/config/other.properties (working copy)
@@ -133,6 +136,9 @@
# Color to use for Admin names, if enabled. (access level 100+).
# (Must be in hex BGR format: eg. 00FF00 = Green)
AdminNameColor = 00FF00
+# Color to use for Admin titles , if access level 100+
+# Retail : ffff77
+AdminTitleColor = ffff77
# Color to use for GM names, if enabled. (access level 75+).
# (Must be in hex BGR format: eg. FFFF00 = Yellow)
GMNameColor = FFFF00
Index: java/net/sf/l2j/Config.java
===================================================================
--- java/net/sf/l2j/Config.java (revision 1780)
+++ java/net/sf/l2j/Config.java (working copy)
@@ -266,6 +266,7 @@
public static int ALT_PRIVILEGES_DEFAULT_LEVEL;
public static boolean GM_NAME_COLOR_ENABLED;
public static int ADMIN_NAME_COLOR;
+ public static int ADMIN_TITLE_COLOR;
public static int GM_NAME_COLOR;
public static boolean GM_HERO_AURA;
public static boolean GM_STARTUP_INVULNERABLE;
@@ -1259,6 +1269,7 @@
GM_NAME_COLOR_ENABLED = Boolean.parseBoolean(otherSettings.getProperty("GMNameColorEnabled", "False"));
GM_NAME_COLOR = Integer.decode("0x" + otherSettings.getProperty("GMNameColor", "FFFF00"));
ADMIN_NAME_COLOR = Integer.decode("0x" + otherSettings.getProperty("AdminNameColor", "00FF00"));
+ ADMIN_TITLE_COLOR = Integer.decode("0x" + otherSettings.getProperty("AdminTitleColor", "00FF00"));
GM_HERO_AURA = Boolean.parseBoolean(otherSettings.getProperty("GMHeroAura", "True"));
GM_STARTUP_INVULNERABLE = Boolean.parseBoolean(otherSettings.getProperty("GMStartupInvulnerable", "True"));
GM_STARTUP_INVISIBLE = Boolean.parseBoolean(otherSettings.getProperty("GMStartupInvisible", "True"));
Index: java/net/sf/l2j/gameserver/clientpackets/EnterWorld.java
===================================================================
--- java/net/sf/l2j/gameserver/clientpackets/EnterWorld.java (revision 1780)
+++ java/net/sf/l2j/gameserver/clientpackets/EnterWorld.java (working copy)
@@ -167,7 +167,10 @@
{
if (activeChar.getAccessLevel() >= 100) // if gm have more than 100 access
+ {
activeChar.getAppearance().setNameColor(Config.ADMIN_NAME_COLOR);
+ activeChar.getAppearance().setTitleColor(Config.ADMIN_TITLE_COLOR);
+ }
else if (activeChar.getAccessLevel() >= 75)
activeChar.getAppearance().setNameColor(Config.GM_NAME_COLOR);
}
}
credits: L2jServer Team