21.04.2012, 05:51
pawn Код:
public OnPlayerUpdate(playerid)
{
new Text3D:procurado[MAX_PLAYERS];
if(WantedPoints[playerid] != 0)
{
procurado[playerid] = Create3DTextLabel("~x PROCURADO x~", 0x008080FF, 30.0, 40.0, 50.0, 40.0, 0, 0);
Attach3DTextLabelToPlayer(procurado[playerid], playerid, 0.0, 0.0, 0.7);
}
else
{
DeletePlayer3DTextLabel(procurado[playerid]);
}
return 1;
}