SA-MP Forums Archive
Attach3DTextLabelToPlayer Problem ? - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+---- Forum: Help Archive (https://sampforum.blast.hk/forumdisplay.php?fid=89)
+---- Thread: Attach3DTextLabelToPlayer Problem ? (/showthread.php?tid=252004)



Attach3DTextLabelToPlayer Problem ? - park4bmx - 29.04.2011

SOLVED
pawn Код:
//at the top
new Text3D:Test[MAX_PLAYERS];

//then on playerSpawn
Test[playerid] = Create3DTextLabel("Test",0x008080FF,30.0,40.0,50.0,40.0,0);
Attach3DTextLabelToPlayer(Test[playerid], playerid, 0.0, 0.0, 0.7);

//and OnPlayerDisconnect
Delete3DTextLabel(Test[playerid]);
And the problem is that the 3DText doesnt show any suggestions ??


Re: Attach3DTextLabelToPlayer Problem ? - MadeMan - 29.04.2011

You can't see your own label, only others can.


Re: Attach3DTextLabelToPlayer Problem ? - park4bmx - 29.04.2011

Well That Makes Sense Lol Thanks