Preskoči na vsebino

PlayerTextDrawBoxColor

Description

Sets the color of a textdraw's box (PlayerTextDrawUseBox).

NameDescription
playeridThe ID of the player whose textdraw to set the box color of.
PlayerText:textidThe ID of the player textdraw to set the box colour of.
boxColourThe colour to set. Alpha (transparency) is supported.

Returns

This function does not return any specific values.

Examples

new PlayerText:pTextdraw[MAX_PLAYERS];

public OnPlayerConnect(playerid)
{
pTextdraw[playerid] = CreatePlayerTextDraw(playerid, 320.0, 240.0, "Example Text");
PlayerTextDrawUseBox(playerid, pTextdraw[playerid], true);
PlayerTextDrawBoxColor(playerid, pTextdraw[playerid], 0xFF0000FF); // Red box with no transparency
return 1;
}