Przejdź do głównej zawartości

PlayerTextDrawGetBackgroundCol

warning

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

Description

Gets the background color of a player-textdraw

NameDescription
playeridThe ID of the player
PlayerText:textidThe ID of the player textdraw to get the background color of

Returns

Returns the background color of the player-textdraw.

Examples

new PlayerText:pTextdraw[MAX_PLAYERS];

public OnPlayerConnect(playerid)
{
pTextdraw[playerid] = CreatePlayerTextDraw(playerid, 320.0, 240.0, "Welcome to my OPEN.MP server");
PlayerTextDrawSetOutline(playerid, pTextdraw[playerid], 1);
PlayerTextDrawBackgroundColor(playerid, pTextdraw[playerid], 0x00FF00FF);
PlayerTextDrawShow(playerid, pTextdraw[playerid]);

new backgroundColor = PlayerTextDrawGetBackgroundCol(playerid, pTextdraw[playerid]);
// backgroundColor = 0x00FF00FF
return 1;
}