java.lang.Object
fr.prodrivers.bukkit.commons.parties.Party

public class Party extends Object
Prodrivers Commons Party instance
  • Method Details

    • getOwnerUniqueId

      public UUID getOwnerUniqueId()
      Returns owner's unique id.
      Returns:
      Owner's unique id
    • getPlayers

      public ArrayList<UUID> getPlayers()
      Returns party members.
      Returns:
      List of party members
    • addPlayer

      public boolean addPlayer(UUID playerUniqueId)
      Adds a player.
      Parameters:
      playerUniqueId - Player to add's Unique ID
      Returns:
      true if the player was added to the party
    • removePlayer

      public boolean removePlayer(UUID playerUniqueId)
      Removes a player.
      Parameters:
      playerUniqueId - Player to remove's Unique Id
      Returns:
      true if the player was removed from the party
    • containsPlayer

      public boolean containsPlayer(UUID playerUniqueId)
      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

      public boolean isPartyOwner(UUID playerUniqueId)
      Checks if a player is the party owner
      Parameters:
      playerUniqueId - Player's Unique ID
      Returns:
      true if the player is the party owner
    • electOwner

      public void electOwner(UUID newOwner)
      Set a player as the new party owner
      Parameters:
      newOwner - New owner
    • size

      public int size()
      Returns the party's number of players.
      Returns:
      Party's number of players
    • disband

      public void disband()
      Disband/Delete the party.
    • broadcast

      public void broadcast(Chat chat, String msg)
      Send a message to all party players
      Parameters:
      chat - Chat plugin to use
      msg - Message to send
    • broadcast

      public void broadcast(Chat chat, String msg, List<UUID> excluded)
      Send a message to all party players, except some defined ones
      Parameters:
      chat - Chat plugin to use
      msg - Message to send
      excluded - Players to be excluded from the broadcast