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!
Spoiler: config.yml
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
# 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
Spoiler: 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
/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
For assistance or suggestions, join our discord:
https://discord.gg/HeknxrbXHn
[Outdated] GIF Tutorials (Updated tutorials coming soon™):
Adding/removing materials
Adding/removing names
[Outdated] Tutorial by ServerMiner:
If you or someone you know has made a tutorial for this plugin, please let me know in our discord! https://discord.gg/HeknxrbXHn
Goals
Adding/removing materials
Adding/removing names
[Outdated] Tutorial by ServerMiner:
If you or someone you know has made a tutorial for this plugin, please let me know in our discord! https://discord.gg/HeknxrbXHn
✅100 Downloads
✅250 Downloads
❌500 Downloads
❌750 Downloads
If your server uses my plugin, feel free to send me the IP so I can post it here!
NOTE: This plugin has only been tested in 1.19.3 but will likely work in previous versions!
Quick facts
- Edition: Minecraft Java
- File type: .jar
- Minecraft version listed: 1.19
- How to install: Install the matching mod loader (Forge, Fabric or NeoForge) for your Minecraft version. → Download the .jar. → Put it in the .minecraft/mods folder and launch that loader profile.
- Where to get it: Opens on Spigot — not every file is mirrored on our own servers.
Install steps are the general flow for this file type — How to install Minecraft Java mods & modpacks walks through it step by step.
Sortify | Item Filter for Redstone Components is a free Minecraft Java mod. Compatible with Minecraft 1.19. Downloaded 868 times (via Spigot). Download it and open it directly in the game.