You Need build SM_PLAYER_INFO.java
Add this script for VIP Tag
PHP Code:
if (MembershipConfig.VIPTAG_DISPLAY) {
if(player.getClientConnection().getAccount().getMembership() > 0) {
//if he's gm = do nothing, else the gmtag wont display
if (player.isGM()) {
} //he's not gm so
else {
if(player.getClientConnection().getAccount().getMembership() == 1)
{
playerName = ("\uE024" + MembershipConfig.VIP_LEVEL1 + " ");
}
else if(player.getClientConnection().getAccount().getMembership() == 2)
{
playerName = ("\uE023" + MembershipConfig.VIP_LEVEL2 + " ");
}
}
}
}