Ke$ha Posted April 10, 2010 Posted April 10, 2010 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
DevHarpun Posted April 10, 2010 Posted April 10, 2010 I love your share men :D today i searching that beacouse on la2base i have white nick and green tittle ! Very big thanks :D
Ke$ha Posted April 10, 2010 Author Posted April 10, 2010 I love your share men :D today i searching that beacouse on la2base i have white nick and green tittle ! Very big thanks :D np :)
DevHarpun Posted April 10, 2010 Posted April 10, 2010 np :) maybe you can give full diffs for title name admin and title name gm?
Coyote™ Posted April 10, 2010 Posted April 10, 2010 credits: i think s but im not sure An already commited code? Of course it doesn't belong to that kid.
DominiQue Posted April 10, 2010 Posted April 10, 2010 I saw this ting on l2j old forum alomst 1 year ago,so credits arent of System....
Coyote™ Posted April 10, 2010 Posted April 10, 2010 I saw this ting on l2j old forum alomst 1 year ago,so credits arent of System.... This is already commited @ L2jServer..
Setekh Posted April 10, 2010 Posted April 10, 2010 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 >.>
Matim Posted April 10, 2010 Posted April 10, 2010 An already commited code? Of course it doesn't belong to that kid. Whats the point to flame him all the time?
Coyote™ Posted April 10, 2010 Posted April 10, 2010 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.
Ke$ha Posted April 10, 2010 Author Posted April 10, 2010 L2jServer i forgot! i can not modify it! someone change it please
Coyote™ Posted April 10, 2010 Posted April 10, 2010 i forgot! i can not modify it! someone change it please done
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now