Class CustomPlayer

java.lang.Object
dev.lone.itemsadder.api.CustomEntity
dev.lone.itemsadder.api.CustomPlayer

public class CustomPlayer extends CustomEntity
  • Constructor Details

    • CustomPlayer

      public CustomPlayer()
  • Method Details

    • getPlayerName

      public String getPlayerName()
    • playAnimation

      public boolean playAnimation(String emoteName)
      Description copied from class: CustomEntity
      Plays an animation
      Overrides:
      playAnimation in class CustomEntity
      Parameters:
      emoteName - the animation name
      Returns:
      true if the animation was played, otherwise false
    • stopAnimation

      public void stopAnimation()
      Description copied from class: CustomEntity
      Stops the currently playing animation
      Overrides:
      stopAnimation in class CustomEntity
    • spawn

      public static CustomPlayer spawn(String playerSkin, org.bukkit.Location location)
      Spawns a custom player entity
      Parameters:
      playerSkin - can be a player name, a mineskin.org url and a signed texture string.
      location - the location where you want to spawn the entity
      Returns:
      the entity wrapper
    • byAlreadySpawned

      @Nullable public static @Nullable CustomPlayer byAlreadySpawned(org.bukkit.entity.Entity entity)
    • playEmote

      public static void playEmote(org.bukkit.entity.Player player, String emoteName)
    • stopEmote

      public static void stopEmote(org.bukkit.entity.Player player)