You can improve pvp color/skill thing with:
- Gain item on x pvp points
- Not only pvp, but x PK required for rewards
- Hero glow
You should make any of those: nameColor="FF9900" titleColor="FFFF77" skillId="3206" skillLv="10" as not required.
Also before final L2Skill skill = SkillTable.getInstance().getInfo(pvpColor.getSkillId(), pvpColor.getSkillLv());, you should make if(pvpColor.getSkillId() > 0)
In pvpColor() you should make broadcastUserInfo(); after the loop, so if someone gets many bonuses at once there will be no spam of that packet.
_log.warning("Exception: PvpColorTable load: " + e); - you should always put also 2nd argument e. Like this: _log.warning("Some message about the error", e);. It's good to do this, because if exception will occur, your warning will not show line and stack trace of the error.
I hope you don't mind, that i tell you code could be better.