Przejdź do głównej zawartości

PlayerTextDrawBoxColour

warning

This function was added in omp v1.1.0.2612 and will not work in earlier versions!

Description

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

NameDescription
playeridThe ID of the player whose textdraw to set the box colour 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);
PlayerTextDrawBoxColour(playerid, pTextdraw[playerid], 0xFF0000FF); // Red box with no transparency
return 1;
}