3d text label not working
#2

Hmmmm, you could better use this way:

https://sampwiki.blast.hk/wiki/Attach3DTextLabelToPlayer

pawn Код:
new Text3D:label[MAX_PLAYERS];
 
public OnPlayerConnect(playerid)
{
    label[playerid] = Create3DTextLabel("Hello, I am new here!", 0x008080FF, 30.0, 40.0, 50.0, 40.0, 0);
    Attach3DTextLabelToPlayer(label[playerid], playerid, 0.0, 0.0, 0.7);
    return 1;
}
 
public OnPlayerDisconnect(playerid, reason)
{
    Delete3DTextLabel(label[playerid]);
    return 1;
}
Edit: wait, what is the target? A player? Else you can't use this lol :P
Reply


Messages In This Thread
3d text label not working - by swieberdevos - 27.06.2011, 20:09
Re: 3d text label not working - by Jantjuh - 27.06.2011, 21:36
Re: 3d text label not working - by swieberdevos - 28.06.2011, 13:50

Forum Jump:


Users browsing this thread: 1 Guest(s)