Premium Member Problem
#1

I want to make it so

when people get premium they will get red text over there head

saying premium member

Please help on this

If you can do this you are the best scripter in the world!!
Reply
#2

pawn Код:
new Text3D:premiumtext[MAX_PLAYERS];

public OnPlayerConnect(playerid)
{
    if(IsPlayerPremium(playerid))
    {
        premiumtext[playerid] = Create3DTextLabel("Premium Member", 0xAA3333AA, 0.0, 0.0, 0.0, 50.0, 0, 1);
        Attach3DTextLabelToPlayer(premiumtext[playerid], 0.0, 0.0, 1.3);
    }
}

public OnPlayerDisconnect(playerid, reason)
{
    Delete3DTextLabel(premiumtext[playerid]);
}
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)