Lewati ke konten utama

PlayerTextDrawUseBox

Description

Toggle the box on a player-textdraw.

NameDescription
playeridThe ID of the player whose textdraw to toggle the box of
PlayerText:textidThe ID of the player-textdraw to toggle the box of
bool:boxEnabledtrue to use a box or false to not use a box

Returns

This function does not return any specific values.

Examples

new PlayerText:gMyTextdraw[MAX_PLAYERS];

public OnPlayerConnect(playerid)
{
gMyTextdraw[playerid] = CreatePlayerTextDraw(playerid, 40.0, 140.0, "_~N~Example text!~N~_");
PlayerTextDrawUseBox(playerid, gMyTextdraw[playerid], true);
PlayerTextDrawBoxColor(playerid, gMyTextdraw[playerid], 0x00000066); // Set the box color to a semi-transparent black
return 1;
}