Ugrás a fő tartalomhoz

PlayerTextDrawGetColour

vigyázat

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

Description

Gets the text colour of a player-textdraw

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

Returns

Returns the text colour of the player-textdraw.

Examples

new PlayerText:pTextdraw[MAX_PLAYERS];

public OnPlayerConnect(playerid)
{
pTextdraw[playerid] = CreatePlayerTextDraw(playerid, 320.0, 240.0, "Example Text");
PlayerTextDrawColour(playerid, pTextdraw[playerid], 0xFF0000FF);
PlayerTextDrawShow(playerid, pTextdraw[playerid]);

new colour = PlayerTextDrawGetColour(playerid, pTextdraw[playerid]);
// colour = 0xFF0000FF
return 1;
}