# Categories (main menu)

For the general ITEM configuration please see [Item config](https://app.gitbook.com/s/1mRm2d218gpt3uXzQ0ZN/item-config "mention").

<pre class="language-yaml"><code class="lang-yaml"><strong># Name of the inventory gui
</strong><strong>title: "Collections"
</strong>
# How many rows should the chest inventory have?
rows: 6

# Should we fill the empty slots?
filler:
  enabled: true
  item:
    name: " "
    material: BLACK_STAINED_GLASS_PANE
    hide-tooltip: true

# These keys should match exactly the keys you used in categories.yml
items:
  farming:
    name: "&#x26;a{name} Collections"
    lore:
      - "&#x26;7View your {name} collections!"
      - ""
      - "&#x26;7Completion: &#x26;e{progress_percent}%"
      - "&#x26;7Total collected: &#x26;e{total_formatted}"
      - ""
      - "&#x26;8Global ranking: &#x26;8#&#x26;a{lb_position}"
      - "&#x26;8You are in the top &#x26;a{lb_position_percent}%&#x26;8 of &#x26;7{lb_size}"
      - "&#x26;8players!"
      - ""
      - "&#x26;eLeft click to view!"
      - "&#x26;eRight click to view rewards!"
    material: WHEAT
    slot: 20
  mining:
    name: "&#x26;a{name} Collections"
    lore:
      - "&#x26;7View your {name} collections!"
      - ""
      - "&#x26;7Completion: &#x26;e{progress_percent}%"
      - "&#x26;7Total collected: &#x26;e{total_formatted}"
      - ""
      - "&#x26;8Global ranking: &#x26;8#&#x26;a{lb_position}"
      - "&#x26;8You are in the top &#x26;a{lb_position_percent}%&#x26;8 of &#x26;7{lb_size}"
      - "&#x26;8players!"
      - ""
      - "&#x26;eLeft click to view!"
      - "&#x26;eRight click to view rewards!"
    material: IRON_PICKAXE
    slot: 21
    flags:
      - HIDE_ATTRIBUTES
  combat:
    name: "&#x26;a{name} Collections"
    lore:
      - "&#x26;7View your {name} collections!"
      - ""
      - "&#x26;7Completion: &#x26;e{progress_percent}%"
      - "&#x26;7Total collected: &#x26;e{total_formatted}"
      - ""
      - "&#x26;8Global ranking: &#x26;8#&#x26;a{lb_position}"
      - "&#x26;8You are in the top &#x26;a{lb_position_percent}%&#x26;8 of &#x26;7{lb_size}"
      - "&#x26;8players!"
      - ""
      - "&#x26;eLeft click to view!"
      - "&#x26;eRight click to view rewards!"
    material: DIAMOND_SWORD
    slot: 22
    flags:
      - HIDE_ATTRIBUTES
  foraging:
    name: "&#x26;a{name} Collections"
    lore:
      - "&#x26;7View your {name} collections!"
      - ""
      - "&#x26;7Completion: &#x26;e{progress_percent}%"
      - "&#x26;7Total collected: &#x26;e{total_formatted}"
      - ""
      - "&#x26;8Global ranking: &#x26;8#&#x26;a{lb_position}"
      - "&#x26;8You are in the top &#x26;a{lb_position_percent}%&#x26;8 of &#x26;7{lb_size}"
      - "&#x26;8players!"
      - ""
      - "&#x26;eLeft click to view!"
      - "&#x26;eRight click to view rewards!"
    material: OAK_LEAVES
    slot: 23
  fishing:
    name: "&#x26;a{name} Collections"
    lore:
      - "&#x26;7View your {name} collections!"
      - ""
      - "&#x26;7Completion: &#x26;e{progress_percent}%"
      - "&#x26;7Total collected: &#x26;e{total_formatted}"
      - ""
      - "&#x26;8Global ranking: &#x26;8#&#x26;a{lb_position}"
      - "&#x26;8You are in the top &#x26;a{lb_position_percent}%&#x26;8 of &#x26;7{lb_size}"
      - "&#x26;8players!"
      - ""
      - "&#x26;eLeft click to view!"
      - "&#x26;eRight click to view rewards!"
    material: FISHING_ROD
    slot: 24

# Your custom items. You can have any number of custom items here.
# Make sure to use unique keys for them.
custom-items:
  close:
    name: "&#x26;cClose"
    material: BARRIER
    slot: 53
    on-left-click:
      - "[close]"
  info:
    name: "&#x26;aCollections"
    material: PAINTING
    slot: 4
    lore:
      - ""
      - "&#x26;7View all of the items available"
      - "&#x26;7in the server! Collect more of an item"
      - "&#x26;7to unlock rewards!"
</code></pre>
