SA-MP Forums Archive
3D text command ? - 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)
+--- Thread: 3D text command ? (/showthread.php?tid=310020)



3D text command ? - XDTheProGamerz - 10.01.2012

Do anyone want to help me...

i wanna know how to make a command to make a 3Dtext at my current location.....


Re: 3D text command ? - Min - 10.01.2012

Put this script under OnPlayerText.

Код:
SetPlayerChatBubble(playerid, text, COLOR, 100.0, 10000);



Re: 3D text command ? - Konstantinos - 10.01.2012

Quote:
Originally Posted by Min
Посмотреть сообщение
Put this script under OnPlayerText.
Not about chat.
get player's posistion and create a 3D Text label.

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


Re: 3D text command ? - Min - 10.01.2012

Try this one:

Код:
new Text3D:3dlabel[MAX_PLAYERS];
3dlabel[playerid] = Create3DTextLabel("TEXT",COLOR,30.0,40.0,50.0,40.0,0);
Attach3DTextLabelToPlayer(3dlabel[playerid], playerid, 0.0, 0.0, 0.7);
And to delete it:

Код:
Delete3DTextLabel(3dlabel[playerid]);