Przejdź do głównej zawartości

SetPlayerChatBubble

Description

Creates a chat bubble above a player's name tag.

NameDescription
playeridThe player which should have the chat bubble.
const text[]The text to display.
colourThe text color
Float:drawDistanceThe distance from where players are able to see the chat bubble.
expireTimeThe time in miliseconds the bubble should be displayed for.
OPEN_MP_TAGS:...Indefinite number of arguments of any tag.

Returns

This function does not return any specific values.

Examples

public OnPlayerText(playerid, text[])
{
SetPlayerChatBubble(playerid, text, 0xFF0000FF, 100.0, 10000);
return 1;
}

Notes

wskazówka

You can't see your own chat bubbles. The same applies to attached 3D text labels.

wskazówka
  • You can use color embedding for multiple colors in the message.
  • Using '-1' as the color will make the text white (for the simple reason that -1, when represented in hexadecimal notation, is 0xFFFFFFFF).