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.
SetPlayerMarkerForPlayer
Description
Change the colour of a player's nametag and radar blip for another player.
Name | Description |
---|---|
playerid | The player that will see the player's changed blip/nametag color |
targetid | The player whose color will be changed |
colour | New color. Supports alpha values. |
Returns
This function does not return any specific values.
Examples
// Make player 42 see player 1 as a red marker
SetPlayerMarkerForPlayer(42, 1, 0xFF0000FF);
// Make the players marker an invisible white (chat will be white but marker will be gone).
SetPlayerMarkerForPlayer(42, 1, 0xFFFFFF00);
// Make the players marker invisible to the player while keeping chat colour the same. Will only work correctly if SetPlayerColor has been used:
SetPlayerMarkerForPlayer(42, 1, (GetPlayerColor(1) & 0xFFFFFF00));
// Make the players marker fully opaque (solid) to the player while keeping chat colour the same. Will only work correctly if SetPlayerColor has been used:
SetPlayerMarkerForPlayer(42, 1, (GetPlayerColor(1) | 0x000000FF));
Related Functions
- ShowPlayerMarkers: Decide if the server should show markers on the radar.
- LimitPlayerMarkerRadius: Limit the player marker radius.
- SetPlayerColor: Set a player's color.
- ShowPlayerNameTagForPlayer: Show or hide a nametag for a certain player.
- GetPlayerMarkerForPlayer: Gets the colour of a player's nametag and radar blip for another player.