Package | Description |
---|---|
me.ryandw11.ultrachat.api | |
me.ryandw11.ultrachat.api.channels | |
me.ryandw11.ultrachat.api.events.properties | |
me.ryandw11.ultrachat.api.managers |
Modifier and Type | Method and Description |
---|---|
ChatChannel |
UltraChatAPI.getPlayerCurrentChannel(java.util.UUID player)
Get the current channel of a player.
|
Modifier and Type | Method and Description |
---|---|
ChatChannel |
ChannelBuilder.build()
Build the channel
|
Modifier and Type | Method and Description |
---|---|
ChatChannel |
ChannelProperties.getChannel() |
Modifier and Type | Method and Description |
---|---|
ChatChannel |
ChannelManager.getChannelByName(java.lang.String name)
Get a channel via its name
|
ChatChannel |
ChannelManager.getDefaultChannel()
Get the servers default channel.
|
ChatChannel |
ChannelManager.getPlayerChannel(org.bukkit.entity.Player player)
Grab the player's current channel.
|
ChatChannel |
ChannelManager.getPlayerChannel(java.util.UUID player)
Grab an offline player's current channel.
|
Modifier and Type | Method and Description |
---|---|
boolean |
ChannelManager.channelExists(ChatChannel channel)
If a given channel exists (In this instance if it is save in the files)
|
java.util.List<java.util.UUID> |
ChannelManager.getAllPlayersInChannel(ChatChannel channel)
Get all players in a channel online or offline.
|
java.util.List<org.bukkit.entity.Player> |
ChannelManager.getPlayersInChannel(ChatChannel channel)
Get all online players in a given channel.
|
void |
ChannelManager.setDefaultChannel(ChatChannel channel)
Set the default channel
|
void |
ChannelManager.setPlayerChannel(org.bukkit.entity.Player player,
ChatChannel channel)
Set the player's channel.
|
void |
ChannelManager.setPlayerChannel(java.util.UUID player,
ChatChannel channel)
Set the player's channel.
|