Teams API
Overview
A Team
class contains:
name
which is the unique name every team has. There cannot be multiple teams of the same namecolor
which is aLegacyTextColor
teamNameTagVisibility
is either always visible, Hide for other teams, hide for own team or always hiddenteamCollisionRule
is either always push, push for other teams, push for own team, never pushdisplayName
which is the display name of the teamprefix
which is displayed before the name of the player in tablistsuffix
which is displayed after the name of the player in tablistallowFriendlyFire
if true, teammates will be able to hurt each-otherseeFriendlyInvisibles
if true, teammates will be able to see each-other when they have invisibility potion
Usage
You can create and customize teams using the following code:
kotlin
val customTeam = TeamManager.create("trans-gang", LegacyTextColor.PINK)
customTeam.prefix.value = "<#F5A9B8>[Trans Gang]"
customTeam.teamCollisionRule.value = TeamCollisionRule.NEVER
customTeam.allowFriendlyFire = false
To modify an attribute of a team, you can simply change its value:
kotlin
customTeam.prefix.value = "<#F5A9B8>[Trans Gang]" //Same as above
customTeam.suffix.value = "<#5BCEFA>[Forever]"
customTeam.displayName.value = "<#FFFFFF>Custom Team"
customTeam.teamCollisionRule.value = TeamCollisionRule.PUSH_OTHER_TEAMS
customTeam.teamNameTagVisibility.value = TeamNameTagVisibility.HIDDEN
customTeam.color.value = LegacyTextColor.PINK
customTeam.allowFriendlyFire = true
customTeam.seeFriendlyInvisibles = true
INFO
Only the name
attribute cannot be changed.
To set team of an entity, you can simply set the value of the team
field on any entity:
kotlin
player.team.value = customTeam //Adds the player 'player' to the team 'customTeam'
entity.team.value = null //Removes the entity 'entity' from any team
To remove a team, you can simply call TeamManager.remove
:
kotlin
TeamManager.remove(customTeam)
All entities on that team will have their team
field automatically set to null