Package com.l2jfrozen.gameserver.masteriopack.rankpvpsystem

Examples of com.l2jfrozen.gameserver.masteriopack.rankpvpsystem.KillerPvpStats


    // Send all skills to char
    activeChar.sendSkillList();
   
    if(RankPvpSystemConfig.NICK_COLOR_ENABLED || RankPvpSystemConfig.TITLE_COLOR_ENABLED)
    {
      KillerPvpStats activeCharPvpStats = PvpTable.getInstance().getKillerPvpStats(activeChar.getObjectId());
     
      if(RankPvpSystemConfig.NICK_COLOR_ENABLED)
      {
        if (!activeChar.isGM())
        {
        activeChar.getAppearance().setNameColor(activeCharPvpStats.getRank().getNickColor());
        activeChar.sendPacket(new UserInfo(activeChar));
        activeChar.broadcastUserInfo();
        }
      }
     
      if(RankPvpSystemConfig.TITLE_COLOR_ENABLED)
      {
        if (!activeChar.isGM())
        {
        activeChar.getAppearance().setTitleColor(activeCharPvpStats.getRank().getTitleColor());
        activeChar.broadcastUserInfo();
        }
      }
    }
   
View Full Code Here

TOP

Related Classes of com.l2jfrozen.gameserver.masteriopack.rankpvpsystem.KillerPvpStats

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.