# Configuration

## Default file

```yaml
# #################################################################
# ┌─────────────────────────────────────────────────────────────┐ #
# │                         Invsee Menu                         │ #
# └─────────────────────────────────────────────────────────────┘ #
# #################################################################

# General options
options:
  # Enable/disable the menu (and command)
  enabled: true
  # Menu title
  title: "&7%player%'s inventory"
  # Number of slots of the menu
  slots: 45

# Empty slots
empty:
  # Material for empty slots
  # https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html
  material: "BARRIER"
  # Display name for empty slots, you can put " " for empty name
  name: "&cEmpty"

# Decorative items in the menu
glass:
  # Material for decorative items, put "AIR" for disable it
  # https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html
  material: "GRAY_STAINED_GLASS_PANE"
  # Display name
  name: " "

# Decorative slots
glass-slots:
  - 37
  - 38
  - 39
  - 40

# Armor slots
armor-slots:
  # Start slot
  start: 41
  # Number of armor slots (boots, leggings, chestplate and helmet)
  length: 4

# The slot for offhand item
offhand-slot: 36
```

## General options

* **Enabled:** Enable/disable the full module
* **Title:** The menu title
* **Slots:** The slots of the menu

## Empty

These are the items that are empty, for example, if the player has no helmet equipped.

* **Material:** The material of the item
* **Name:** The item displayname

## Glass (decorative items)

### General

* **Material:** The items material
* **Name:** The items displayname

### Glass-slots

The list of slots where the decorative items will be placed.

{% hint style="info" %}
To deactivate it put this:

```yaml
# Decorative slots
glass-slots: []
```

{% endhint %}

## Armor slots

Slots for player's armor

* **Start:** The start slot (if the slot is 41, it means that the slots will be from 41 to 44)
* **Length:** Number of slots for the armor (use 4 for view all armor)

## Offhand-slot

The slot where the item that the player has in the off hand will be located.
