This plugin is based on the original ItemSorter plugin developed by Programie.
This project is not a complete rewrite.
It is a modified and extended version of the original plugin, created after studying and analyzing the original source code.
The main goal of this fork is to improve stability, readability, and usability for real-world servers, especially medium to large survival servers with complex storage systems.
This modified version focuses on:
All core ideas and the original concept belong to the original author.
This project is intended solely as an optimized and refined continuation for specific use cases.
ItemSorter is a Minecraft Bukkit plugin designed to automate item organization by transferring items from a source inventory (such as chests or hoppers) into one or more target inventories based on item type. Players can configure sorting behavior using signs, allowing items to be routed efficiently into the correct storage without redstone or complex setups. The plugin supports features such as multi-chest targets, sorting priority, configurable transfer speed, and optional distance or world limitations, making it suitable for both small survival servers and large, high-performance storage systems.
The following options can be configured in the config.yml of the plugin (created on the first load):
allow-cross-world-connectionsmax-distancemax-names-per-playermax-signs-per-nameallow-multi-chestsmax-multi-chests-blockstransfer-single-item-per-intervaltransfer-intervalitemsorter.createitemsorter.destroyAnyitemsorter.command/itemsorter commanditemsorter.*Simply place a sign at the side of any inventory block (chest, barrel, hopper, etc.) you would like to use as the source chest containing the following content:
[ItemSource]This will define the chest as an item source (i.e. the chest you will put your items into for the plugin to sort them).
After that, place a sign at the side of any inventory block (chest, barrel, hopper, etc.) you would like to use as the target chest containing the following content:
[ItemTarget]This will define the chest as an item target (i.e. the chest your items will be moved to).
Next, place any item you would like to sort into the target chest.
For example, if you want to move cobblestone into the chest, simply place at least one cobblestone item into the chest.
After that, you are ready to go.
You may now move any item from your player inventory into the source chest, and the plugin will try to find the correct target chest for each item.
Any remaining items which can't be sorted into a target chest will remain in the source chest.
Here is a short video demonstrating the plugin:
At some point, you might have multiple chests for a single item type such as cobblestone or dirt.
In that case, you may want to define which chest should be filled first before trying the next one.
To achieve this type of target chest order, simply define the order using o:any number on the fourth line of the sign attached to the target chest.
!1
[ItemTarget]o:10A lower number means the chest is used before another with a higher number.
By default, any target chest without the order option will have the order number 0.
If you define multiple chests with the same order number, the order of those chests might be random.
Sometimes, you might get to the point where placing lots of signs is really time-consuming and could also decrease the client rendering performance (e.g. if there are hundreds of signs in your storage room).
Think about the following setup:
!1
In that case, you can use another feature built into this plugin.
Simply place a single target sign on any chest and add mc (short for "Multi Chests") to the fourth line of it.
Any directly connected chests are now connected equally with this target sign.
[ItemTarget]mcYou may also specify other options like the target order by separating each option with a comma.
[ItemTarget]o:10,mcPlacing that sign on a chest allows you to connect as many chests as you want (limited by the max-multi-chests-blocks config option).
You only have to make sure they are touching each other on any block side.
The previous setup would look like that: !1
All of those eight chests are connected using the same name some name, just like placing a target sign on each of them.
Clicking on an ItemSorter sign (left or right click) shows some information about the sign as well as its connection to the other signs/chests.
The plugin has a single command /itemsorter with multiple subcommands (actions).
remove-signs <player name> <sign name>
ItemSorter is a Minecraft Bukkit plugin that automatically transfers and sorts items from a source inventory into multiple target inventories based on item type.