> For the complete documentation index, see [llms.txt](https://extremall.gitbook.io/advancedkits/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://extremall.gitbook.io/advancedkits/configurations/menu-fillers.md).

# Menu Fillers

## 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.

{% tabs %}
{% tab title="Example 1" %}
Use one menu filler in one menu

```
menu-fillers:
  - 'example'
```

{% endtab %}

{% tab title="Example 2" %}
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.

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

{% endtab %}

{% tab title="Example 3" %}
Do not use menu fillers

```
menu-fillers: []
```

{% endtab %}
{% endtabs %}
