Jump to content

[Share] Custom admin title color


Ke$ha

Recommended Posts

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

Link to comment
Share on other sites

I saw this ting on l2j old forum alomst 1 year ago,so credits arent of System....

also on l2jfree forum...

anyways its a 3 line code who cares >.>

Link to comment
Share on other sites

Whats the point to flame him all the time?

 

I did not flame anybody, I just corrected him and his idea to give the credits to s.

And by the way, do not ask me to respect someone who has attacked mxc.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



×
×
  • Create New...

AdBlock Extension Detected!

Our website is made possible by displaying online advertisements to our members.

Please disable AdBlock browser extension first, to be able to use our community.

I've Disabled AdBlock