setPlayerNametagColor | Multi Theft Auto: Wiki Skip to content

setPlayerNametagColor

Client-side
Server-side
Shared

This page is incomplete! Help wanted!

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


This allows you to change the RGB color mixture in the name tags of players.

Note

If the player is using a hexcode in front of their name, it will override this function. You must first strip the name of the hexcode using removeHex

Syntax

setPlayerNametagColor ( )

Code Examples

server

This will allow a player to change the RGB color mixture of their nickname. Valid RGB is between 0-255.

-- The handler function for the console command
function nametagColorChange ( thePlayer, commandName, r, g, b )
-- Apply the new color mix of RGB to the command handler activator
setPlayerNametagColor ( thePlayer, r, g, b )
end
-- This is a command handler that activates on text "nametagcolor" in the console. It also asks
-- the player to provide values for the extra parameters r, g, b after the command name. These will
-- be the new color mix of RGB to apply to the player's name tag.
addCommandHandler ( "nametagcolor", nametagColorChange )

See Also