11.04.2012, 14:45
Replace
pawn Код:
//if one of these conditions are true, the rest of OnPlayerSpawn will not run ...
if(PlayerInfo[playerid][pVip] == 1) return SetPlayerArmour(playerid, 90);
Create3DTextLabel("VIP Player", 0x008080FF, 30.0, 40.0, 50.0, 40.0, 0);
if(PlayerInfo[playerid][pVip] == 1) return Attach3DTextLabelToPlayer(vlabel, playerid, 0.0, 0.0, 0.7);
pawn Код:
if(PlayerInfo[playerid][pVip] == 1) SetPlayerArmour(playerid, 90);
Create3DTextLabel("VIP Player", 0x008080FF, 30.0, 40.0, 50.0, 40.0, 0);
if(PlayerInfo[playerid][pVip] == 1) Attach3DTextLabelToPlayer(vlabel, playerid, 0.0, 0.0, 0.7);