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.
SetPlayerColor
Description
Set the colour of a player's nametag and marker (radar blip).
Name | Description |
---|---|
playerid | The ID of the player whose color to set. |
colour | The color to set. Supports alpha values. |
Returns
This function does not return any specific values.
Examples
// Red, using hexadecimal notation:
SetPlayerColor(playerid, 0xFF0000FF);
//Red, using decimal notation:
SetPlayerColor(playerid, 4278190335);
Notes
tip
- This function will change player's color for everyone, even if player's color was changed with SetPlayerMarkerForPlayer for any other player.
- If used under OnPlayerConnect, the affecting player will not see the color in the TAB menu.
Related Functions
- SetPlayerMarkerForPlayer: Set a player's marker.
- GetPlayerColor: Check the color of a player.
- ChangeVehicleColor: Set the color of a vehicle.