SetPlayerNametagColor

From Multi Theft Auto: Wiki
Revision as of 07:34, 11 April 2007 by Ransom (talk | contribs)
Jump to navigation Jump to search

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

Syntax

bool setPlayerNametagColor ( player thePlayer, int r, int g, int b )

Required Arguments

thePlayer, int r, int g, int b

  • thePlayer: The player whose name tag text you wish to change the color of
  • r: The amount of red you want in the mixture of RGB (0-255 is valid)
  • g: The amount of green you want in the mixture of RGB (0-255 is valid)
  • b: The amount of blue you want in the mixture of RGB (0-255 is valid)

Returns

Returns true if the function was successful, false otherwise.

Example

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

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

See Also

-- leave this unless you complete the function