11.04.2010, 15:38
Create3DTextLabel and Attach3DTextLabelToPlayer.
I dont know what happens to text label on player death.. You might haveto Delete3DTextLabel and create new one on player spawn.
pawn Код:
//on top
new uLabel[MAX_PLAYERS];
//somewhere in your script
if(playerdb[playerid][VIP]) uLabel[playerid] = Create3DTextLabel("[VIP]", COLOR, 0.0, 0.0, 0.0, 40.0, 0, 0);
else uLabel[playerid] = Create3DTextLabel("[Player]", COLOR, 0.0, 0.0, 0.0, 40.0, 0, 0);
Attach3DTextLabelToPlayer(uLabel[playerid], playerid, 0.0, 0.0, 0.3);

