SetPlayerChatBubble
From SA-MP Wiki
Description:
Creates a chat bubble above a player's name tag.
(playerid, text[], color, Float:drawdistance, expiretime)
playerid | The player which should have the chat bubble. |
text[] | The text to display. |
color | The text color |
drawdistance | The distance from where players are able to see the chat bubble. |
expiretime | The time in miliseconds the bubble should be displayed for. |
Return Values:
- 1: The function was executed successfully.
- 0: The function failed to execute. This means the player specified does not exist.
![]() Note | You can't see your own chatbubbles. The same applies to attached 3D text labels. |
Example Usage:
public OnPlayerText(playerid, text[]) { SetPlayerChatBubble(playerid, text, 0xFF0000FF, 100.0, 10000); return 1; }
Tips |
|