22.09.2010, 18:07
pawn Код:
new PlayerText3D:PoliceLabel[MAX_PLAYERS];
for(new i; i <= MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i)) {
if(gTeam[i] == TEAM_COP) { //Or whatever team system you use...
PoliceLabel[i] = CreatePlayer3DTextLabel(i,"COPS CAN ONLY SEE THIS LABEL",COLOR_BLUE,X,Y,Z,40.0);
}
}
}

