05.01.2013, 05:34
Try this
pawn Код:
new Text3D:VIPS;
public OnPlayerSpawn(playerid)
{
if(PlayerInfo[playerid][Level] == 1 || IsPlayerAdmin(playerid))
{
VIPS = Create3DTextLabel("VIP MEMBER", red, 0.0, 0.0, 0.0, 50.0, 0, 0); // This is wrong VIPS[playerid] because already define it in PlayerInfo
Attach3DTextLabelToPlayer(VIPS, playerid, 0.0, 0.0, 0.0);
SetPlayerArmour(playerid, 100);
}
return 1;
}