Item Animations

Unfortunately, the animation feature is currently unavailable due to technical complexities with the menus. We do not have a specific timeline for its return at this moment. To stay informed about updates on this topic, be sure to join our Discord server.

Item Animations is a feature that allows you to create animated items. There are two types of items: static and animated. As the name suggests, static items are not updated, so you cannot change their appearance once they are displayed. In contrast, animated items are updated periodically, and their properties, such as type, name, and lore, may change with each update.

How to create an Animated Item?

  1. Head over to the /config/menus/ folder

  2. Open a Menu file

  3. Choose an item you would like to make animated

  4. Find the animation-settings section

  5. Set the enabled setting to true

  6. Create your animations (see below)

  7. Restart the server or reload the plugin to apply changes

How to create an Animation?

To create an animation, you need to make the meta-builder iterable.

Here is an example of a static meta-builder:

meta-builder:
  name: "Static Item Name"
  lore:
  - "Static Item Lore"
  type: ENDER_CHEST
  amount: 1
  glow: false
  player-head: ""
  custom-head: ""

Here's an example of an animated meta-builder:

meta-builder:
  1:
    name: "Animation #1 Item Name"
    lore:
    - "Animation #1 Item Lore"
    type: ENDER_CHEST
    amount: 1
    glow: false
    player-head: ""
    custom-head: ""
  2:
    name: "Animation #2 Item Name"
    lore:
    - "Animation #2 Item Lore"
    type: ENDER_CHEST
    amount: 1
    glow: false
    player-head: ""
    custom-head: ""

Last updated