getPlayerNametagColor | Multi Theft Auto: Wiki Skip to content

getPlayerNametagColor

Client-side
Server-side
Shared

Pair: setPlayerNametagColor

This page is incomplete! Help wanted!

Please finish this page using the corresponding Old Wiki article.
Go to Contribution guidelines for more information.


This function gets the current color of a player's name tag as RGB values. These are in the range 0-255.

Syntax

getPlayerNametagColor ( )

Code Examples

server

This console command will tell the player what his tag color is. The color is composed of a red, a green and a blue component, each ranging from 0-255.

function tagInfoCommand ( thePlayer, commandName )
-- store the RGB data about the player who activated the command handler into the local variables r, g, b.
local r, g, b = getPlayerNametagColor ( thePlayer )
-- Display the RGB values in the chatbox
outputChatBox ( "Your tag color is: R:" .. r .. " G:" .. g .. " B:" .. b, thePlayer )
end
addCommandHandler ( "retrievetagcolor", tagInfoCommand )

See Also