AdvancedChests Wiki
  • 👋Welcome!
  • Fundamentals
    • Getting set up
      • ✍️Creating a new chest
        • 🟢Sections and Options
        • 🛑Detecting config errors
      • ⌨️Commands
      • 📝Permissions
    • Backups
      • ✍️Backups for YML Storage
  • 💻API USAGE
    • ⚙️Installation
Powered by GitBook
On this page
  1. Fundamentals
  2. Getting set up

Creating a new chest

In this page you will find all the details related to chests folder.

PreviousGetting set upNextSections and Options

Last updated 5 months ago

Understanding the chests folder

The chests folder works with a simple system where each file represents an AdvancedChest.

Creating a new chest

By default the chests folder comes with two files called example and example2. You can easily copy one of these default files and paste it to start editing it. After this the first thing you want to do is to give the file a unique name and start editing the all the options.

Feel free to use our online creator tool to generate and download these files more quickly.

At the end your files should look similiar to this:

     inventory:
      name: "&6Legendary Chest &8Page - %i%"
      size: 270
    container:
      type: "CHEST"
    item:
      name: "&6Legendary Chest"
      lore:
      - "&7This chest contains a total"
      - "&7of &6x%size% &7slots"
    hologram:
      enable: false
      title:
      - ""
      - ""
    shop-price: 1000
    allow-hoppers-use: true
    previous-page-slot: 4
    next-page-slot: 6
    upgrades:
      enable: true
      next_upgrade: "example2"
      price: 1000
      slot: 5
    sorters:
      enable: false
      price: 0
      slot: 9
    sells:
      enable: false
      multiplier: 1
      slot: 1
    smelter:
      enable: false
      price: 0
      slot: 8
    compressor:
      enable: false
      price: 0
      slot: 7
    autosells:
      enable: false
      frequency: 0
      multiplier: 1
      tax: 5
      slot: 2
    deposit:
      enable: false
    crafting:
      enable: true
      items:
       A:
        material: "OAK_PLANKS"
        data: 0
       B:
        material: "IRON_INGOT"
        data: 0
      recipe:
      - "AAA"
      - "ABA"
      - "AAA"

Now we are ready to start editing all the options and features in our new chest!

✍️
https://deadsilenceiv.github.io/AdvancedChestsCreator/
🟢Sections and Options