PlayerTextDrawColor

PlayerTextDrawColor

Description:
Function PlayerTextDrawColor sets the text color of a player-textdraw.
Function PlayerTextDrawColor was added in 0.3e and will not work in earlier versions!
  • You can also use Gametext colors in textdraws.
  • The textdraw must be re-shown to the player in order to update the color.


Parameters:
(playerid, PlayerText:text, color)
int playerid The ID of the player who's textdraw to set the color of.
int text The TextDraw to change.
int color The color in hexadecimal format.


Return Values:
This function does not return any specific values.


Examples:
new PlayerText:pTextdraw[MAX_PLAYERS];
 
public OnPlayerConnect(playerid)
{
    pTextdraw[playerid] = CreatePlayerTextDraw(playerid, x, y, "...");
    PlayerTextDrawColor(playerid, pTextdraw[playerid], 0xFF0000FF); // Red text
    PlayerTextDrawShow(playerid, pTextdraw[playerid]);
    return 1;
}


Related Functions
The following functions may be useful, as they are related to this function in one way or another.