BACKUP YOUR CONFIG BEFORE UPDATING TO V1.6 BACKUP YOUR CONFIG BEFORE UPDATING TO V1.6 BACKUP YOUR CONFIG BEFORE UPDATING TO V1.6
Sortify (formerly known as Dispensables) is a lightweight plugin that provides a way to restrict or allow the dispensing, dropping, or hopping of specific items based on a variety of criteria.
Current Features
Works on dispensers, droppers, AND hoppers!
Blacklist or whitelist multiple items based on the following:
Material
Display Name
Lore
Enchantments
Change amount of items to dispense/drop/hop
In-game GUI editor and command editor!
Config
Code (YAML):
file-version: 5
# Sortify by TrueProtocol: https://www.spigotmc.org/resources/sortify-item-filter-for-redstone-components.61856/ # Support Discord: https://discord.com/invite/HeknxrbXHn
# Dispensers Section dispensers: # Enables dispensers to be affected # Set to false if you wish for dispensers to be unaffected enabled: true
# Toggles whether the 'items' and list is a blacklist or a whitelist # true - 'items' acts as a whitelist # false - 'items' acts as a blacklist whitelist-mode: false
# Amount to dispense if not defined in 'items' OR if 'whitelist-mode' is false default-amount: 1
# Items affected # NOTE: You can remove any value in each entry. If the attribute is not listed, the plugin will not check for it. # Valid Attributes: material, display-name, lore, enchantments, amount items:
'1':
material: WOODEN_SWORD
display-name: Wooden Sword
lore: - Line 1
- Line 2
enchantments:
sharpness: 1
unbreaking: 3
amount: 1
'2':
material: TNT
# Droppers Section droppers: # Enables droppers to be affected # Set to false if you wish for droppers to be unaffected enabled: true
# Toggles whether the 'items' and list is a blacklist or a whitelist # true - 'items' acts as a whitelist # false - 'items' acts as a blacklist whitelist-mode: true
# Amount to drop if not defined in 'items' OR if 'whitelist-mode' is false default-amount: 1
# Items affected # NOTE: You can remove any value in each entry. If the attribute is not listed, the plugin will not check for it. # Valid Attributes: material, display-name, lore, enchantments, amount items:
'1':
material: WOODEN_SWORD
display-name: Wooden Sword
lore: - A basic wooden sword.
enchantments:
sharpness: 1
amount: 1
'2':
material: DIAMOND
amount: 5
# Hoppers Section hoppers: # Enables hoppers to be affected # Set to false if you wish for hoppers to be unaffected enabled: true
# Toggles whether the 'items' and list is a blacklist or a whitelist # true - 'items' acts as a whitelist # false - 'items' acts as a blacklist whitelist-mode: false
# Amount to hop if not defined in 'items' OR if 'whitelist-mode' is false default-amount: 10
# Items affected # NOTE: You can remove any value in each entry. If the attribute is not listed, the plugin will not check for it. # Valid Attributes: material, display-name, lore, enchantments, amount items:
'1':
material: WOODEN_SWORD
display-name: Wooden Sword
lore: - A basic wooden sword.
enchantments:
sharpness: 1
amount: 1
'2':
material: DIAMOND
Commands & Permissions
sortify.admin /sortify help - shows list of commands for Sortify
/sortify reload - reloads config.yml
/sortify editor - opens GUI editor
sortify.dispensers /dispenser help - shows list of dispenser commands
/dispenser editor - opens editor for dispenser config
/dispenser <on/off> - toggles whether dispensers are controlled by Sortify
/dispenser whitelist <on/off> - toggles whitelist mode for dispenser config
sortify.droppers /dropper help - shows list of dropper commands
/dropper editor - opens editor for dropper config
/dropper <on/off> - toggles whether droppers are controlled by Sortify
/dropper whitelist <on/off> - toggles whitelist mode for dropper config
sortify.hoppers /hopper help - shows list of hopper commands
/hopper editor - opens editor for hopper config
/hopper <on/off> - toggles whether hoppers are controlled by Sortify
/hopper whitelist <on/off> - toggles whitelist mode for hopper config