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