GetTeamColor: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 8: | Line 8: | ||
===Required Arguments=== | ===Required Arguments=== | ||
*'''theTeam:''' The team you want to | *'''theTeam:''' The team you want to get the color of. | ||
===Returns=== | ===Returns=== |
Revision as of 22:10, 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 get 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