# 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 %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://extremall.gitbook.io/advancedkits/configurations/menu-fillers.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
