SetTeamName: Difference between revisions
Jump to navigation
Jump to search
m (→Example) |
m (→See Also) |
||
(One intermediate revision by one other user not shown) | |||
Line 7: | Line 7: | ||
bool setTeamName ( team theTeam, string newName ) | bool setTeamName ( team theTeam, string newName ) | ||
</syntaxhighlight> | </syntaxhighlight> | ||
{{OOP||[[team]]:setName|name|getTeamName}} | |||
===Required Arguments=== | ===Required Arguments=== | ||
*'''theTeam:''' The [[team]] you want to change the name of. | *'''theTeam:''' The [[team]] you want to change the name of. | ||
Line 30: | Line 30: | ||
==See Also== | ==See Also== | ||
{{Team_functions}} | {{Team_functions|server}} |
Latest revision as of 23:02, 6 September 2024
This function is used to set a team's name.
Syntax
bool setTeamName ( team theTeam, string newName )
OOP Syntax Help! I don't understand this!
- Method: team:setName(...)
- Variable: .name
- Counterpart: getTeamName
Required Arguments
- theTeam: The team you want to change the name of.
- newName: A string representing the name you want the team to be called.
Returns
Returns true if the team was valid and the name was changed, false otherwise.
Example
This example gets the current team of a player, then changes its name.
function changeMyTeamName ( source, key, newName ) playerteam = getPlayerTeam ( source ) -- get the player's team if ( playerteam ) then -- if he was on a team oldName = getTeamName ( playerteam ) -- get the teams current name setTeamName ( playerteam, newName ) -- change the teams name to blue outputChatBox ( "Changed " .. getPlayerName ( source ) .. "'s team name from " .. oldName .. " to " .. newName ) end end addCommandHandler ( "changeteamname", changeMyTeamName )
See Also
- createTeam
- setPlayerTeam
- setTeamColor
- setTeamFriendlyFire
- setTeamName
- Shared
- countPlayersInTeam
- getPlayerTeam
- getPlayersInTeam
- getTeamColor
- getTeamFriendlyFire
- getTeamFromName
- getTeamName