java.lang.Object
fr.multimc.api.spigot.common.entities.player.MmcPlayer
All Implemented Interfaces:
IHasGameMode, IHasSpeed, ITeleportable

public class MmcPlayer extends Object implements IHasGameMode, IHasSpeed, ITeleportable
  • Constructor Details

    • MmcPlayer

      public MmcPlayer(@NotNull @NotNull UUID uuid)
    • MmcPlayer

      public MmcPlayer(@NotNull @NotNull String name)
    • MmcPlayer

      public MmcPlayer(@NotNull @NotNull org.bukkit.entity.Player player)
    • MmcPlayer

      public MmcPlayer(@NotNull @NotNull org.bukkit.entity.HumanEntity humanEntity)
  • Method Details

    • setGameMode

      public boolean setGameMode(@NotNull @NotNull org.bukkit.GameMode mode)
      Specified by:
      setGameMode in interface IHasGameMode
    • setGameModeSync

      public boolean setGameModeSync(@NotNull @NotNull org.bukkit.plugin.Plugin plugin, @NotNull @NotNull org.bukkit.GameMode mode)
      Specified by:
      setGameModeSync in interface IHasGameMode
    • setSpeed

      public boolean setSpeed(@Nullable @Nullable PlayerSpeed speed)
      Specified by:
      setSpeed in interface IHasSpeed
    • setWalkSpeed

      public boolean setWalkSpeed(@Nullable @Nullable PlayerSpeed speed)
      Specified by:
      setWalkSpeed in interface IHasSpeed
    • setFlySpeed

      public boolean setFlySpeed(@Nullable @Nullable PlayerSpeed speed)
      Specified by:
      setFlySpeed in interface IHasSpeed
    • teleportTo

      public boolean teleportTo(@NotNull @NotNull MmcPlayer target)
      Specified by:
      teleportTo in interface ITeleportable
    • teleportRelative

      public boolean teleportRelative(@NotNull @NotNull RelativeLocation location)
      Specified by:
      teleportRelative in interface ITeleportable
    • teleportRelative

      public boolean teleportRelative(@NotNull @NotNull RelativeLocation location, boolean center)
      Specified by:
      teleportRelative in interface ITeleportable
    • teleport

      public boolean teleport(@NotNull @NotNull org.bukkit.Location location)
      Specified by:
      teleport in interface ITeleportable
    • teleport

      public boolean teleport(@NotNull @NotNull org.bukkit.Location location, boolean center)
      Specified by:
      teleport in interface ITeleportable
    • teleportToSync

      public boolean teleportToSync(@NotNull @NotNull org.bukkit.plugin.Plugin plugin, @NotNull @NotNull MmcPlayer target)
      Specified by:
      teleportToSync in interface ITeleportable
    • teleportRelativeSync

      public boolean teleportRelativeSync(@NotNull @NotNull org.bukkit.plugin.Plugin plugin, @NotNull @NotNull RelativeLocation location)
      Specified by:
      teleportRelativeSync in interface ITeleportable
    • teleportRelativeSync

      public boolean teleportRelativeSync(@NotNull @NotNull org.bukkit.plugin.Plugin plugin, @NotNull @NotNull RelativeLocation location, boolean center)
      Specified by:
      teleportRelativeSync in interface ITeleportable
    • teleportSync

      public boolean teleportSync(@NotNull @NotNull org.bukkit.plugin.Plugin plugin, @NotNull @NotNull org.bukkit.Location location)
      Specified by:
      teleportSync in interface ITeleportable
    • teleportSync

      public boolean teleportSync(@NotNull @NotNull org.bukkit.plugin.Plugin plugin, @NotNull @NotNull org.bukkit.Location location, boolean center)
      Specified by:
      teleportSync in interface ITeleportable
    • sendMessage

      public boolean sendMessage(@NotNull @NotNull net.kyori.adventure.text.Component component)
    • sendActionBar

      public boolean sendActionBar(@NotNull @NotNull net.kyori.adventure.text.Component component)
    • sendTitle

      public boolean sendTitle(@Nullable @Nullable net.kyori.adventure.text.Component title, @Nullable @Nullable net.kyori.adventure.text.Component subtitle)
    • sendTitle

      public boolean sendTitle(@Nullable @Nullable net.kyori.adventure.text.Component title, @Nullable @Nullable net.kyori.adventure.text.Component subtitle, @NotNull @NotNull Duration stay)
    • sendTitle

      public boolean sendTitle(@Nullable @Nullable net.kyori.adventure.text.Component title, @Nullable @Nullable net.kyori.adventure.text.Component subtitle, @NotNull @NotNull Duration fade, @NotNull @NotNull Duration stay)
    • sendTitle

      public boolean sendTitle(@Nullable @Nullable net.kyori.adventure.text.Component title, @Nullable @Nullable net.kyori.adventure.text.Component subtitle, @NotNull @NotNull Duration fadeIn, @NotNull @NotNull Duration stay, @NotNull @NotNull Duration fadeOut)
    • clear

      public boolean clear(@Nullable @Nullable ClearMethod clearMethod)
      Clears the player's inventory and/or armor
      Parameters:
      clearMethod - The ClearMethod to use to clear the player's inventory
      Returns:
      true if the player was online and the inventory was cleared
    • setArmor

      public boolean setArmor(@NotNull @NotNull org.bukkit.inventory.ItemStack[] armorContent)
    • setHelmet

      public boolean setHelmet(@NotNull @NotNull org.bukkit.inventory.ItemStack item)
    • setChestPlate

      public boolean setChestPlate(@NotNull @NotNull org.bukkit.inventory.ItemStack item)
    • setLeggings

      public boolean setLeggings(@NotNull @NotNull org.bukkit.inventory.ItemStack item)
    • setBoots

      public boolean setBoots(@NotNull @NotNull org.bukkit.inventory.ItemStack item)
    • giveItem

      public boolean giveItem(@NotNull @NotNull ItemBuilder item)
    • giveItems

      public boolean giveItems(@NotNull @NotNull ItemBuilder... items)
    • setItem

      public boolean setItem(@NotNull @NotNull ItemBuilder item, int slot)
    • setItem

      public boolean setItem(@NotNull @NotNull org.bukkit.inventory.ItemStack item, int slot)
    • setSpawnPoint

      public boolean setSpawnPoint(@NotNull @NotNull org.bukkit.Location location)
    • setFoodLevel

      public boolean setFoodLevel(int level)
    • setSaturation

      public boolean setSaturation(int level)
    • setHealth

      public boolean setHealth(double health)
    • setMaxHealth

      public boolean setMaxHealth(double maxHealth)
    • feed

      public boolean feed()
    • heal

      public boolean heal()
    • heal

      public boolean heal(boolean feed)
    • equals

      public boolean equals(Object obj)
      Overrides:
      equals in class Object
    • isOnline

      public boolean isOnline()
    • isFlying

      public boolean isFlying()
    • getPlayer

      @Nullable public @Nullable org.bukkit.entity.Player getPlayer()
    • getUUID

      public UUID getUUID()
    • getName

      public String getName()
    • getNickName

      @Nullable public @Nullable net.kyori.adventure.text.Component getNickName()
    • getWalkSpeed

      @NotNull public @NotNull PlayerSpeed getWalkSpeed()
    • getFlySpeed

      @NotNull public @NotNull PlayerSpeed getFlySpeed()
    • getInventory

      @Nullable public @Nullable org.bukkit.inventory.PlayerInventory getInventory()
    • getLocation

      @Nullable public @Nullable org.bukkit.Location getLocation()
    • getWorld

      @Nullable public @Nullable org.bukkit.World getWorld()
    • getHealth

      public double getHealth()
    • getMaxHealth

      public double getMaxHealth()
    • getFoodLevel

      public int getFoodLevel()
    • openInventory

      public void openInventory(@NotNull @NotNull org.bukkit.inventory.Inventory inventory)
    • closeInventory

      public void closeInventory(@NotNull @NotNull org.bukkit.inventory.Inventory inventory)