Help with something small - 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: Help with something small (
/showthread.php?tid=503907)
Help with something small -
Jacob756 - 31.03.2014
Hey guys
In a server I used to play in,when any player standing infront of you and he types something it appears above his head
Example: am in LS and a player infront or beside or around me and he types hi it appers above his name
I saw it in that server and I need it for my server
Can any1 help me plz?
I will give +1 rep for those who help
Re: Help with something small -
MBilal - 31.03.2014
PHP код:
SetPlayerChatBubble(playerid, text, -1, 100.0, 10000);
add this under OnPlayerText
Re: Help with something small -
Abagail - 31.03.2014
pawn Код:
public OnPlayerText(playerid, text[])
{
SetPlayerChatBubble(playerid, text, -1, 100.0, 10000);
return 1;
}