CreateTeam: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 14: | Line 14: | ||
==Example== | ==Example== | ||
This example creates a new team for a player, then adds him to it. | |||
<syntaxhighlight lang="lua"> | <syntaxhighlight lang="lua"> | ||
addCommandHandler ( "gimmeATeam", "gimmeATeam" ) | addCommandHandler ( "gimmeATeam", "gimmeATeam" ) |
Revision as of 15:20, 30 June 2006
This function is for creating a new team, which can be used to group players.
Syntax
team createTeam ( string teamName )
Required Arguments
- teamName: A string representing the teams name.
Returns
Returns a team object if it was successfully created, 'false' otherwise.
Example
This example creates a new team for a player, then adds him to it.
addCommandHandler ( "gimmeATeam", "gimmeATeam" ) function gimmeATeam ( source, key, teamName ) team = createTeam ( teamName ) -- create a new team with the specified name if ( team ) then -- if it was successfully created addPlayerToTeam ( source, team ) -- add the player to the new team end end
See Also
- countPlayersInTeam
- getPlayerTeam
- getPlayersInTeam
- getTeamColor
- getTeamFriendlyFire
- getTeamFromName
- getTeamName