23.02.2011, 12:30
pawn Код:
command(playerlabel, playerid, params[])
{
new Text3D:label[MAX_PLAYERS], Float:X, Float:Y, Float:Z;
if(Player[playerid][AdminLevel] >= 4) return 0;
GetPlayerPos(playerid, X, Y, Z);
label[playerid] = Create3DTextLabel("a",WHITE,X, Y, Z,40.0,0);
Attach3DTextLabelToPlayer(label[playerid], playerid, 0.0, 0.0, 0.7);
return 1;
}