Skip to content

Break Hopper Settings

CraftyKenny edited this page Apr 7, 2020 · 11 revisions

Particle Settings

particle - Set the particle for when the hopper breaks.

View the particles list:

  "breakHopper":
    particle: CLOUD

Break Settings

breakEvery - Break interval, seconds collectDrops - Set whether you want the hopper to collect drops instantly or not

  "breakHopper":
    breakEvery: 3
    collectDrops: true

Collection Settings

drops - Set the drops for the hopper (aka: what the hopper will break and pickup) and the amount This can be in a range, or a specific number

  "breakHopper1":
    drops:
    # This will drop 3 diamonds each time a diamond ore is broken
    - "DIAMOND_ORE:3"
  "breakHopper2":
    drops:
    # This will drop between 2 - 4 diamonds each time a diamond ore is broken
    - "DIAMOND_ORE:2-4"

Upgrade Settings

With MFHoppers, there's a system where server owners can allow players to upgrade their hoppers.

Simple, add upgrades: under a hopper with the Break type hopper.

  "breakHopper":
    upgrades:
      "1":
        breakEvery: 8
        limitPerChunk: -1

You are able to add any configuration of the general hopper settings here

Price Settings (Upgrades)