19.08.2013, 11:31
Here is the line ↓
pawn Код:
DeletePlayer3DTextLabel(playerid,VIPtag);
DeletePlayer3DTextLabel(playerid,VIPtag);
new Text3D:VIPtag;
if(GetPVarInt(playerid, "VIP") > 0)
{
VIPtag = Create3DTextLabel("VIP", COLOR_Green, 20.0, 40.0, 50.0, 40.0, 0);
Attach3DTextLabelToPlayer(VIPtag, playerid, 0.0, 0.0, 0.7);
}
else
{
DeletePlayer3DTextLabel(playerid,VIPtag);
}
You need to use : https://sampwiki.blast.hk/wiki/Delete3DTextLabel instead of DeletePlayer..
|