❤️
AdvancedKits
  • 😍Welcome
    • Introduction
  • Information
    • Placeholders
    • Common Issues and Solutions
  • Configurations
    • Kits
    • Menu Fillers
    • Requirements
    • Item Format
    • Action Types (Coming Soon)
      • Firework
      • Potion Effect
      • Message
  • Commands
    • Admin Commands
    • Player Commands
Powered by GitBook
On this page
  • How to create
  • How to use
  1. Configurations

Menu Fillers

With menu fillers, you can customize the background of menus.

How to create

Simply go to the menufillers.yml file and add the following layout:

# This is the id of the menu filler and must be unique
example:
  # The delay in ticks (20 ticks = 1 second) between each frame
  # To disable animations leave this to 0
  # To work this you must have at least 2 different items
  delay: 20
  # When is true will set in each slot a random item
  # When is false will set in each slot the same item with sort priority
  # To work this when is true you must have at least 2 different items
  random: false
  # In what slots will fill the items
  # Leave empty (slots: []) to fill all empty (background) items
  slots: [0-8, 10, 15, 18, 19-30]
  # Set the items you want to put on the above slots
  # You can set unlimited items here with unique id's
  items:
    item_one:
      material: STONE
      name: '&r'
      glow: false
      lore: []
      amount: 1
    item_two:
      material: STONE
      name: '&r'
      glow: true
      lore: []
      amount: 1

How to use

Find on menus the section menu-fillers: and simply add your menu filler id.

Use one menu filler in one menu

menu-fillers:
  - 'example'

Use 2 different menu fillers on the same menu. The menu filler with the id example has a higher priority because is first on the list. You can add unlimited menu fillers here.

menu-fillers:
  - 'example'
  - 'other-menu-filler'

Do not use menu fillers

menu-fillers: []
PreviousKitsNextRequirements

Last updated 1 year ago