Interface Party
public interface Party
Prodrivers Commons Party instance
Used implementation can be changed in configuration.
-
Method Summary
Modifier and TypeMethodDescriptionboolean
assignOwner
(UUID newOwner) Set a player as the new party ownervoid
broadcast
(PartyMessage message, Object... substitutions) Broadcast a message to the party.void
broadcast
(PartyMessage message, List<UUID> excluded, Object... substitutions) Broadcast a message to the party, except some players.void
Broadcast a message to the party.void
Broadcast a message to the party, except some players.void
chatAsPlayer
(org.bukkit.entity.Player player, String message) Send a message as a player.void
clear()
Clear a party of all its players.boolean
containsPlayer
(UUID playerUniqueId) Checks if a player is present in party list.Returns owner's unique id.Returns party members.boolean
isPartyOwner
(UUID playerUniqueId) Checks if a player is the party ownervoid
registerPlayer
(UUID playerUniqueId) Register a player to the party.void
send
(UUID receiverUniqueId, PartyMessage message, Object... substitutions) Send a message to a player.int
size()
Returns the party's number of players.void
unregisterPlayer
(UUID playerUniqueId) Unregister a player from the party.
-
Method Details
-
getOwnerUniqueId
UUID getOwnerUniqueId()Returns owner's unique id.- Returns:
- Owner's unique id
-
getPlayers
Returns party members.- Returns:
- List of party members
-
registerPlayer
Register a player to the party.- Parameters:
playerUniqueId
- Player to add Unique ID
-
unregisterPlayer
Unregister a player from the party.- Parameters:
playerUniqueId
- Player to remove's Unique ID
-
containsPlayer
Checks if a player is present in party list.- Parameters:
playerUniqueId
- Player's Unique ID- Returns:
true
if the player is within the party list.
-
isPartyOwner
Checks if a player is the party owner- Parameters:
playerUniqueId
- Player's Unique ID- Returns:
true
if the player is the party owner
-
assignOwner
Set a player as the new party owner- Parameters:
newOwner
- New owner- Returns:
true
if new owner has been assigned
-
size
int size()Returns the party's number of players.- Returns:
- Party's number of players
-
clear
void clear()Clear a party of all its players. -
chatAsPlayer
Send a message as a player.- Parameters:
player
- Sending playermessage
- Message to send
-
send
Send a message to a player.- Parameters:
receiverUniqueId
- Sending playermessage
- Message to sendsubstitutions
- Values to pass to string format function
-
broadcast
Broadcast a message to the party.- Parameters:
message
- Message to sendsubstitutions
- Values to pass to string format function
-
broadcast
Broadcast a message to the party, except some players.- Parameters:
message
- Message to sendexcluded
- Players that should not receive the messagesubstitutions
- Values to pass to string format function
-
broadcast
Broadcast a message to the party.- Parameters:
message
- Message to send
-
broadcast
Broadcast a message to the party, except some players.- Parameters:
message
- Message to sendexcluded
- Players that should not receive the message
-