17.12.2012, 19:26
you can make an extra GetPlayerNameEx so you can retrieve the players name with the tag.
pawn Код:
stock GetPlayerNameEx(playerid)
{
new Name[MAX_PLAYER_NAME];
new GetPlayerName(playerid,Name,sizeof(Name));
if(IsPlayerVIP[playerid]==1)//change to your VIP variable
{
format(Name,sizeof(Name), "[V.I.P]%s",Name);
return Name;
}else return Name;
}