// 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();
}
}
}