warning Not Translated
This page has not been translated into the language that your browser requested yet. The English content is being shown as a fallback.
If you want to contribute a translation for this page then please click here.
GetPlayerColor
Description
Gets the color of the player's name and radar marker. Only works after SetPlayerColor.
Name | Description |
---|---|
playerid | The ID of the player to get the color of. |
Returns
The player's color. 0 if no color set or player not connected.
Examples
SendClientMessage(playerid, GetPlayerColor(playerid), "This message is in your colorĀ :)");
new output[144];
format(output, sizeof(output), "You can also use the player's color for {%06x}color embedding!", GetPlayerColor(playerid) >>> 8);
SendClientMessage(playerid, -1, output);
// will output the message in white, with ''color embedding'' in the player's color
Notes
warning
GetPlayerColor will return nothing (0) unless SetPlayerColor has been used first. Click HERE for a fix.
Related Functions
- SetPlayerColor: Set a player's color.
- ChangeVehicleColor: Set the color of a vehicle.