GetTeamColor: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 4: | Line 4: | ||
==Syntax== | ==Syntax== | ||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
int, int, int getTeamColor ( team theTeam ) | |||
</syntaxhighlight> | </syntaxhighlight> | ||
Revision as of 22:09, 14 September 2006
This function is for retrieving the color of a team.
Syntax
int, int, int getTeamColor ( team theTeam )
Required Arguments
- theTeam: The team you want to change the color of.
Returns
Returns 3 integers representing the RGB color value of the team if valid, otherwise 'false'.
Example
This example outputs the name of a players team when they spawn, in that team's color.
addEventHandler ( "onPlayerSpawn", root, "onPlayerSpawn" ) function onPlayerSpawn ( spawnpoint, team ) r, g, b = 255, 255, 255 string = getClientName ( source ) .. " spawned" if ( team ) then teamName = getTeamName ( team ) string = string.." as a "..teamName r, g, b = getTeamColor ( team ) end outputChatBox ( string, r, g, b ) end
See Also
- countPlayersInTeam
- getPlayerTeam
- getPlayersInTeam
- getTeamColor
- getTeamFriendlyFire
- getTeamFromName
- getTeamName