3Dtextlabel onplayertext - 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: 3Dtextlabel onplayertext (
/showthread.php?tid=408369)
3Dtextlabel onplayertext -
Fiore - 17.01.2013
i would like to show what a player say above my head, i used create3dtextlabel and Update3DTextLabelText but nothing, any suggestions?
Re: 3Dtextlabel onplayertext -
Lynn - 17.01.2013
pawn Код:
public OnPlayerText(playerid, text[])
{
new str[128];
format(str, sizeof(str), "(radio) %s", text);
SetPlayerChatBubble(playerid,str,0xFFFFFFAA,15.0,5000);// 0xFFFFFFAA = White
return 1;
}