- Fixed: Version util issues
+ Added: player-cache option to disable player cache file
- Fixed: Missing message: menu-reopen
- Fixed: Bedrock client error
- Fixed: API delete param for addItem method
- Fixed: Error with particle on 1.20.x
- Fixed: Hopper item config in hoppers.yml
+ Changed: Run migration on another thread
+ Added: Option to disable player name and skin fetching
Code (YAML):
# The plugin fetches player skins and names from Mojang.
# If disabled, player skins can't be displayed in the menus and name changes will only apply, when they join the server.
fetch-skins-names
: true
+ Improved: Faster time calc
- Fixed: Hopper deletion item drop
- Fixed: Error sucking items using RoseStacker
+ Changed: Add item to inv through /hopper list
- Fixed: Teleport perm wrong in wiki and plugin.yml
If you're using MySQL
1. Update and start server
2. Review the MySQL section and configure it correctly
3. The table-prefix option might require you to add an underscore `_` at the end, if your current table names use underscores. Just open the database to check that, but its very likely they do. **Otherwise, your hoppers won't load. **
4. Restart
If you're using SQLite
1. Update and start server
2. The table-prefix option might require you to add an underscore `_` at the end, if your current table names use underscores. Just open the database file to check that, but its very likely they do. **Otherwise, your hoppers won't load. **
3. Restart
Code (YAML):
mysql
:
# Enable this to use MySQL instead of "file based"
# SQLite. For performance improvement, it's recommended to
# use MySQL. If you don't have access to a MySQL server,
# just let this disabled (false).
enabled
: false
address
: 'localhost'
port
: '3306'
database
: 'upgradeablehoppers'
username
: 'minecraft'
password
: 'password'
# It is highly recommended to set a unique table prefix if the plugin shares a database with other plugins.
table-prefix
: 'hoppers_'
- Fixed: Error on player quit with MySQL
- Fixed: Player saving issues on server stop
- Fixed: Pulling items from brewing stand
- Fixed: Item delete feature if suction disabled
- Fixed: List entry removal in GUI if placeholders disabled
- Fixed: Filter item delete option with stacker plugin
+ Changed: Lazy load link inventories
- Fixed: Link inventory loading triggered multiple times in some cases leading to higher performance impact
+ Changed: Reverted latest visualization change since previous was better
+ Added: [Suggestion] Expand suction visualization to all y levels
- Removed: Logging in console
- Fixed: Prevent hoppers getting crafted if crafting disabled (auto crafters)
- Fixed: SkinsRestorer integration
- Fixed: Setting placeholders to AIR
- Fixed: Item transfer to vanilla hoppers
+ Added: Support for crafters
+ Added: /hoppers view
Visualizes nearby hoppers and links. Also, lets you disable visualizations.
+ Added: Debug message when deleting link
+ Added: [Suggestion] You can now add items with model data to the list of smeltable items in config.yml:
Code (YAML):
# Define a list of additional blocks that can be smelt in a furnace. For example, blocks from data-packs.
# You either need to add material values or model-data number values.
# Material values can be found here: https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html
smelt_list
:
[
]
- Fixed: Displaying of items in GUI menu with strict filtering enabled
It's recommend to update, if you currently use 4.16.1.
- Fixed: Hopper items sometimes not removed
+ Improved: Reduced usage of blockState parsing
- Fixed: Missing message for chat input
- Fixed: Missing message for chat input
- Fixed: not removing hoppers upon lands leave via /lands leave
- Fixed: error when deleting claims on region deletion
- Fixed: Hopper recipe on 1.20.5-6
- Fixed: Chat input with some chat plugins
+ Added: Support for 1.20.5
+ Changed: Prioritize smeltables over fuel. Related to smeltables config option
+ Added: default option to hoppers.yml:
Code (YAML):
# Is default type? Used if no hopper type is provided at /hopper get.
default
: true
- Fixed: [#2519] unlimited support for link distance level
- Fixed: [#2508] default lang option
- Fixed: [#2502] Issues with retrieving skin data for heads, etc. This finally removes errors printed by the server's API. Which might
occur if Mojangs API is down etc.
- Fixed: Missing command: /hopper confirmtp
+ Added: [Suggestion] Visualization for suction radius
Make sure to update the suction item in the GUI language file accordingly:
Code (YAML):
upgrade_suction_radius:
lore
: '&8✖ &7Upgrade the suction radius.
[newline
] &7The hopper sucks
all
items that[newline] &7are in this radius.[newline][newline] &8• &7Current
:
{value
}
[newline
] &8• &7Next:&a
{value_next
}
[newline
] &7Cost:&c
{cost}[newline][newline]&8✖ &9RIGHT CLICK[newline] &7Toggle suction
:
{suction_status
}
[newline
]&8✖ &9SHIFT + RIGHT CLICK
[newline
] &7Visualize suction radius.'
name
: '&6&lSuction Radius'
+ Added: You can now set names for hoppers
You might want to change the list item for the /hopper list menu:
Code (YAML):
entry_object:
lore
: '&8✖ &7Open the hoppers menu.
[newline
]
[newline
]&8✖ &9RIGHT CLICK
[newline
] &7Teleport
to the hopper
[newline
] &7for&c
{cost
}&7.
[newline
]&8✖ &3DROP
[newline
] &7Delete
this hopper.
[newline
] &8• &cThe item can''t be given
[newline
] &cback
to you, if the area
[newline
] &cisn''t loaded.'
name
: '
{name
}'
- Fixed: [#2407] hopper item pickup
+ Added: Option to disable hopper removal at untrust
Code (Text):
# Remove hoppers of players that get untrusted?
untrust-remove: true
- Fixed: [#2396] filter items pagination
- Fixed: Invalid skin URL for default
- Fixed: init issue on spigot
The old custom head textures are no longer supported by the server.
Therefore, you need to change any custom heads in your GUI file to the new
skin URLs.
If you don't do this, you'll receive lots of spam from the server in your console log.
+ Added: Support for new skin player profiles
- Fixed: [#2405] Item suction behavior for items with a max stack size lower than 64
- Fixed: [#2362] AdvancedChest breaking not registered
+ Improved: performance of redstone hopper pause
+ Added: inv-sync option
Code (YAML):
# Should the inventory state of links be synced regularly?
# You should keep this enabled, if you use any 3rd party plugins that modify containers.
inv-sync
: true
- Fixed: [#2372] worldguard error
+ Added: GUI multi lang support
- Fixed: direction-suction also sucking in items below hopper radius (non chunk hoppers)
- Fixed: Locale error on spigot
- Fixed: Console error at startup
- Fixed: Some minor issues
- Removed: No longer needed warnings in GUI
- Fixed: Superiorsykblock2 flag typo
- Fixed: [#2384] async event call
+ Added: Support for superiorskyblock2 item pickup flag
+ Improved: make hoppers claimable, instead of deleting hoppers from the database on land deletion
+ Updated: To latest Lands API
+ Added: [Suggestion] Make /hopper abort re-open the hopper menu
+ Added: [Suggestion] Added permanent link / unlink mode
Code (YAML):
linking:
lore
:
- '&8✖ &bLEFT CLICK'
- ' &7Link this hopper to a container.'
- ' &7Use SHIFT to keep link mode enabled.'
- ''
- '&8✖ &9RIGHT CLICK'
- ' &7Unlink a container from this hopper.'
- ' &7Use SHIFT to keep unlink mode enabled.'
- ''
- '&8✖ &3DROP'
- ' &7Cancel link or unlink mode.'
- Fixed: [#2349] Link filter not loading, if order of sql tables mismatch
- Fixed: Cobbled deepslate not transferred into furnace
+ Added: [#2365] Option to disable trust status check on link creation
- Fixed: [#2362] Wildstacker
- Fixed: [#2636] Issue with item eco
- Fixed: [#2636] Issue with item eco
- Fixed: [#2343] Copied filters not saving
+ Added: [Suggestion] Being able to paste filter to all links
Code (YAML):
refresh_copy_paste:
lore
: '&8✖ &bLEFT CLICK
[newline
] &7Paste a copied filter.
[newline
]&8✖ &bSHIFT + LEFT CLICK
[newline
] &7Paste this filter to
all links.
[newline
]&8✖
&9RIGHT CLICK
[newline
] &7Copy this filter including
[newline
] &7mode
and strict filtering
[newline
] &7properties to another link.'
name
: '&6&lCopy Filter and Mode'
+ Added: Support for Minecraft 1.20
+ Changed: [#2345] Allow re-loading chunk hopper data
[#2286]
- Fixed [#2315]: WildStacker in combination with direct suction
- Fixed: Invalid link item in default gui file
- Fixed: Potential issue with async world loading with some world managers
- Fixed: [#2294] Wrong eco strict option name in config.yml
Code (YAML):
items
:
# If enabled, only items that have the same name, lore etc. will belong to the currency.
# Not just items of the same type or items with the same model-data.
strict_2
: false
- Fixed: Wrong smelt block list option in config.yml
Please update to this version, if you're currently on the previous version (4.12.14).
+ Added: [#2281] List of additional items / blocks that can be smelt in furnaces. For example of data packs
Code (YAML):
type:
furnace
:
# Define a list of additional blocks that can be smelt in a furnace.
# For example blocks from data-packs.
smelt
:
[
]
- Fixed: [#2289] Filter load
- Fixed: [#2307] Item load
[#2281]
- Fixed: [#2286] Double chest filling with sellwand tool
[#2281]
+ Improved: SQL resource disposal
- Fixed: [#2297] Tp msg missing
- Fixed: [#2323] Link save on SQLite due BUSY error
+ Improved: Hopper and link persistence
- Fixed: [#2289] Chunk Hopper suction range
- Fixed: [#2322] Link ordering
- Fixed: [#2312] Chunk hoppers applying wrong radius config if naming is different in hoppers.yml
- Fixed: [#2322] Full container cache
- Fixed: [#2303] Hopper duplicate
- Fixed: [#2309] Chunk hopper radius
- Fixed: [#2292] Not being able to place hoppers on superiorskyblock islands on which a player is trusted was only-land is enabled
- Fixed: [#2303] Hopper deletion
- Fixed: [#2303] Link deletion not triggering for unloaded hoppers
+ Improved: Link retrieval from db - reduce queries
+ Added: Minor performance improvement during item transfer
+ Added: You can now delete hoppers from within the /hopper list menu
Code (Text):
entry_object:
name: '&6&lWorld: {world} X: {x} Y: {y} Z: {z}'
lore:
- '&8✖ &7Open the hoppers menu.'
- ''
- '&8✖ &9RIGHT CLICK'
- ' &7Teleport to the hopper'
- ' &7for&c {cost}&7.'
- '&8✖ &3DROP'
- ' &7Delete this hopper.'
- ' &8• &cThe item can''t be given'
- ' &cback to you, if the area'
- ' &cisn''t loaded.'
material: HOPPER
- Fixed: only-land option
- Fixed: [#2298] [#2297] Error at item move event
- Fixed: [#2298] Suction error
- Fixed: [#2292] AC integration
+ Added: You can now use multiple item container providers at the same time: example AdvancedChests and WildChests at the same time.
UpgradeableHoppers automatically detects and optimizes at initailization.
+ Added: Transfer response caching for container providers such as AC
- Fixed: [#2217] Some slot issues with brewing stands and furnaces caused by the prev version
This version is not compatible with older versions of BetterFarming or UpgradeableSpawners.
If you have any of these installed, update them too.
+ Added: [#2217] Link item cache
+ Improved: Clearing of no longer needed data
- Fixed: [#2282] Missing item: failure_copy_none
@[#2272]
- Fixed: [#2279] Default hopper type eval for hoppers.yml
+ Changed: [#2271] Adjusted listener priority for item spawn event - item stacking related
+ Added: More economy options
Code (YAML):
# Economy settings
# If all types are disabled, the item based economy will be used instead.
# NOTE: When changing these option you might also want to adjust the "eco-format" in this config.
economy:
vault
:
# You need an economy plugin, which supports Vault, to let this work.
enabled_10
: true
# Server bank account name. Spendings go here.
server-bank
: ''
# Player experience
exp:
enabled_15
: false
# Item currency is used when all other economy options are disabled or unavailable.
# The currency item can be edited in the GUI language file at the "currency" item.
items
:
# If enabled, only items that have the same name, lore etc. will belong to the currency.
# Not just items of the same type or items with the same model-data.
strict
: false
+ Added: You can now add multiple chunk hopper types in hoppers.yml by adding type: 'CHUNK' to an hopper type.
Code (YAML):
chunk123:
type
: 'CHUNK'
name
: '&9&lChunk Hopper 123'
cost
: 5000.0
+ Improved: [#2217] Reduced link validation check
+ Added: [#2217] New optimization section
Code (YAML):
# NOTE: These settings require server reload / restart.
optimization:
redstone
:
# Should hoppers stop transferring items if they're powered by redstone?
pause-on-signal
: true
# Should the emitted redstone signal strength be updated with every item insertion and removal?
# This affects both hoppers and links.
update-signal:
enabled_2
: true
# If disabled, the redstone signal will only be updated to on or off. Means it will only change if the
# container state goes from empty -> full or full -> empty.
# This will help increasing performance, but may make it impossible to display the storage capacity using redstone lamps.
precise
: false
# Should the transfer amount from levels.yml also be applied to pulling items from containers above the hopper?
item-pull-amount
: true
+ Added: [#2217] Option to toggle mass item pulling from containers above hoppers
Code (Text):
# Should the transfer amount from levels.yml also be applied to pulling items from containers above the hopper?
# NOTE: These setting requires server reload / restart.
item-pull-amount: true
+ Added: Option to disable redstone checking
# Should hoppers stop transferring items if they're powered by redstone?
# NOTE: These setting require server reload / restart.
redstone: true
+ Improved: Hopper validation check
+ Added: API: getItem and isFull to Hopper
+ Changed: Switched left click for right click for paste item
Code (Text):
refresh_copy_paste:
name: '&6&lCopy Filter and Mode'
lore:
- '&8✖ &bLEFT CLICK'
- ' &7Paste a copied filter.'
- ''
- '&8✖ &9RIGHT CLICK'
- ' &7Copy this filter including'
- ' &7mode and strict filtering'
- ' &7properties to another link.'
+ Added: [Suggestion] Being able to copy and paste filters to other links
An item has been added to the link filter menu to make this possible.
You might need to adjust the slots, since your current gui config might have conflicting slots.
+ Added: Rotten flesh as smeltable
+ Improved: Reduced amount of needed inventory validation checks
- Fixed: [#2233] message not found: creation.untrusted
+ Updated: Latest Lands API
Requires latest version of Lands, if you have Lands installed.
- Fixed: CachedRequirement modification for levels
Merry Christmas!
- Fixed: [#2220] [#2218] Hopper inventory invalid error during item transfer
- Fixed: Minecart item pulling
- Fixed: [#2218] USpawners integration
- Remove: This update removes the recently introduced item filter delete feature, since it seems to be too hard to understand for the average player. Which is understandable.
While it gave the user much more flexibility and possibilities, it's just not simple enough. Therefore the old system is used again.
- Fixed: [#2217] Possible performance issue with minecarts
- Fixed: [#2216] WildChests integration
- Fixed: ChestProtect integration
- Fixed: [#2215] Items not being pulled out of minecarts
+ Improved: [#2212] Hopper item transfer task spreading
+ Added: filter_delete info item to filter menu
+ Changed: [#2180] Behavior of delete filter if it has whitelist enabled and no items in filter
It will no longer disable items in this state.
- Fixed: /hopper get confirmation
- Fixed: Missing param names
Note: This update includes breaking API changes that were necessary for future additions. 3rd party plugin that hook into UpgradeableHoppers will need to update
their dependency to restore support.
+ Added: [Suggestion] The item delete feature is now being treated like a link with a full feature filter
- Fixed: [#2180] Hopper save
- Fixed: [#2169] Issue involving shulker boxes and dispensers
+ Added: Support for AdvancedChests Barrels and Shulker Boxes
- Fixed: [#2162] Ignore y suction limit for chunk hoppers at instant suction
+ Added: [Suggestion] New option for hoppers.yml:
You need to manually add it, if you want to use it.
Code (YAML):
# Should dropped items be directly inserted into a hopper of this type, if it is within range and has space?
direct-suction
: false
- Fixed: [#2105] Error at deleting multiple hoppers at once that affect different players
- Fixed: [#2120] Instant suction with chunk hoppers and radius higher than 1
+ Improved: Invalid hopper deletion process
+ Added: Hoppers are now getting deleting on island deletion and player untrust. Supports: Bskyblock, Iridiumskyblock (only delete) and SuperiorSkyblock2
+ Added: Hoppers are getting deleted on land deletion, if only-land is enabled in config. Only player untrust the affected farms are getting deleted too.
- Fixed: Missing language entries for teleportation and /hopper admin listperms
- Fixed: Missing language entries for teleportation and /hopper admin listperms
+ Added: [Suggestion] SUGAR for brewing stands
- Removed: Debug
+ Added: direct-suction now cover all cases of item spawning
- Fixed: Possible item issue when using shulkers and removing them quickly
+ Added: [#2019] Support for the latest version of AdvancedChests
Older versions of this plugin are not compatible.
- Fixed: [#1984] Incompatibility with shop plugin
+ Added [Suggestion] Include creeper explosions at anti-explosive option
+ Added [Suggestion] Option to allow tnt damage:
Code (YAML):
# Should TnT explosions be able to destroy the hoppers? Their items will drop.
anti-explosive
: true
+ Added: Option to always use default translation
Code (Text):
# Force default language? This will make changes to language files impossible and will always use the default.
# This will always replace existing strings with the default ones.
# You should only use this option if your language matches "en-US".
force-default: false
+ Added: Chat and GUI language files now accept the
alternative file name format <plugin>-<chat | gui>-<language>.yml
- Fixed: [#1972] error at /hoppers list
- Fixed: [#1972] not able to change link priority
- Fixed: [#1969] command.get-confirm
+ Added: [Suggestion] Optional permission for hopper type
Code (YAML):
# You can specify a required permission here.
# No required permission set as default.
permission
: ''
+ Added: [Suggestion] Teleport options
Code (YAML):
# General Teleportation Settings
# Command specific teleportation options can be find in their sections.
teleport
:
# Set the cost of any teleportation to 0 for players that joined the server for the first time.
# You can define a time span here. Example: 1d = players that joined the server 23 hours ago, won't pay for any teleportation.
first-join_time
: 0h
# Waittime
# Timeunit: seconds
wait
: 3
- Fixed: [#1949] Wrong default material for filter items. Must be INHERIT
- Fixed: [#1949] Items with item meta not removable from filter
- Fixed: [#1937] Error get /hopper get
This version migrates your language files into a new format. Existing translations are kept. Please take a backup of your translation files anyway.
This update is a complete overhaul of the GUI menu framework. It contains several improvements and
suggestions that we received in the past. While this version has been tested, there might still be
minor issues that might affect the usability of a menu.
+ Added: PlaceholderAPI support for all GUI menus
+ Added: You can now define multiple slots for items in menus
+ Added: You can now define entry ranges for list menus
+ Added: You can now define common items to be set in each menu
+ Added: Define commands to be executed on item click
- Fixed: Minor issues with commands
The command framework has been refactored.
- All admin (!) commands have been moved to /uhoppers admin
- The tab completion has been improved and consistency across all commands is ensured.
- The permissions for /uhoppers admin <subcmd> subcommands have changed.
- Example: /uhoppers admin player <player> delete Permission: uhoppers .admin.command.player.delete
- It follows the same format for each sub command of /uhoppers admin. No further explanation needed.
+ Improved: Default GUI format, color scheme
- Fixed: [#1773] give.dropped missing {items} placeholder not parsing
- Fixed: Instabreak flag detection for PlotSquared (again)
- Fixed: Instabreak flag detection for PlotSquared
+ Added: [Suggestion] You can now set the max link distance to unlimited by using -1 in a level
+ Added: Option to directly suck items after a player dropped them.
Code (YAML):
# Should dropped items be directly inserted into a hopper, if it is within range and has space?
direct-suction
: false
- Fixed: PlotSquared integration not registering so
hoppers could suck items from other players plots
+ Added: [Suggestion] /hopper admin migratedb <target> command
Example: Migrate data from SQLite to MySQL.
- Fixed: [#1673] Items getting deleted at suction if transfer was successful for a part of the overall amount
- Fixed: Wrong item amount at upper container to hopper
- Fixed: [#1624] eco-format not applying
+ Added: [Suggestion] Option to specify list of linkable containers
Code (YAML):
# You can specify specific containers which should be linkable.
# If you don't configure a list of containers here, it will allow all containers.
# List of possible materials (please note that only containers are linkable): https://hub.spigotmc.org/javadocs/bukkit/org/bukkit/Material.html
linktypes
: '
ALL'
- Fixed: 3rd party item stacker: can't move more than 64 at once
+ Improved: Max add space calculation to save CPU time
- Fixed: Possible issue with 3rd party item stackers, if they removed the item
but transfer failed
- Fixed: Issue with NBSP character in eco format with specific environments
+ Improved: Default eco format and lang files currency symbols
- Fixed: [#1621] Hopper recipe result owned by server
- Fixed: [#1611] Console message removed
+ Improved: Automatically integrate a supported and detected item stacker plugin, even if option is "default"
- Fixed: Hopper getting deleted on land untrust, but block stays and player received item
- Fixed: [#1591] Max item stack size in combination with 3rd party item stackers
- Fixed: [#1608] Error at updating block state in rare cases (redstone signal)
- Fixed: Crafting results in hopper owned by server
+ Added: [Suggestion] You can now parse placeholders from 3rd party plugins in chat messages via PlaceholderAPI.
This does not include GUI menus. Lands will only integrate into PAPI if you have any PAPI placeholders in the language file.
+ Added: /hoppers about command (admin)
- Fixed: Configuration mistake/type in levels.yml, which caused
the chunk hopper radius to be very high. However, this did not have any influence on runtime.
+ Added: Permission to bypass ->
uhoppers.bypass.claim:
description: Allow linking in claims the player is not trusted in.
default: op
- Fixed: Merged items with different meta
- Fixed: AC multi pages issue
+ Added:
Lands -> Delete hoppers when player gets untrusted (Lands version 5.15.2+ required)
+ Added: Basalt as smeltable
+ Added: Gold and iron as smeltable
- Fixed: Hopper not sucking max free space amount from items of ItemStacker plugins
- FIxed: Issue from last version
+ Added: zItemStacker support
- Fixed: Wrong slots in smoker inventory
- Fixed: Comparison error on save task
+ Added: German language files translation by @sphings_
+ Added: ChestProtect: No longer protect uhoppers at placement
- Fixed: Transfer speed from shulker boxes to uhoppers defaults to server
+ Added: Brewing stand option and ingredient slots support
- Fixed: only-claimed option
- Fixed: Level calc error due method rename (Lands)
- Fixed: Minor issue with level calc for Lands
+ Added: You can now setup the insertion order of links
To do that open the links menu
+ Added: Use Q to unlink a container in the links menu
+ Added: Level requirement for the plugin
Lands
+ Added: API -> HopperPlace and Remove Event
- Fixed: Insertion issue on brewstand
![[IMG]](/proxy/image?url=https%3A%2F%2Fi.imgur.com%2FQWjHKl7.png)
+ Added: You can now setup the insertion order of links
To do that open the links menu
+ Added: Use Q to unlink a container in the links menu
+ Added: Level requirement for the plugin
Lands
+ Added: API -> HopperPlace and Remove Event
- Fixed: Insertion issue on brewstand
![[IMG]](/proxy/image?url=https%3A%2F%2Fi.imgur.com%2FQWjHKl7.png)
- Fixed: Some minor issues with task execution
- Improved: Chat action inputs
- Fixed: Error at item insertion into link
Reported by
@Lambsauce
- Fixed: Issue with chest load at link init
Reported by
@Lambsauce
This update contains quite a few changes to the under the hood logic. Please report any issues on our Discord. You can also wait a few days to see if we find currently unknown issues. Thank you!
- Improved: Refactoring of item pull and transfer handler
- Fixed: At advanced chests the hopper did always only pull one item
- Fixed: PlotSquared incompatibility causing hopper dupes with instabreak flag enabled
+ Added: API: LinkCreationEvent
+ Added: API: LinkDeletionEvent
+ Added: RAW_IRON, RAW_GOLD, RAW_COPPER as smeltables
+ Added: New 1.17.x ores support
- Fixed: Possible incompatibility with 3rd party plugins on block breaking
- Fixed: Players being able to link containers in residence claims
- Updated: Chat API to latest version
- Fixed: Hopper removal through 3rd party plugins or other events were not detected and hopper stayed
- Fixed: Potential cause for server crash at teleportation
+ Added: Support for Spigot and Paper 1.17
Java 16 is supported too. You can still use lower Java versions without any issues (however Spigot, Paper 1.17 requires Java 16).
Please download again if you downloaded 2.5.1 previously.
2.5.2:
- Fixed: Minor issues with max name length for link
2.5.0:
- Fixed: Issue with double chests only filling one side in some cases
- Fixed: Minecarts did not push all items to hopper
- Fixed: Not able to set empty lists in config
The complete config file update mechanisms have been recoded. It aims to fix multiple minor issues which
could have been annoying sometimes. Please report any issues to via pm or Discord.
- Fixed: Issue with double chests only filling one side in some cases
- Fixed: Minecarts did not push all items to hopper
- Fixed: Not able to set empty lists in config
The complete config file update mechanisms have been recoded. It aims to fix multiple minor issues which
could have been annoying sometimes. Please report any issues to via pm or Discord.
- Fixed: Issue with id resolve due wrong database metadata selected at startup. Thanks for reporting!
@PhanaticD
- Fixed: ClassCastException at item transfer
- Fixed: Let hoppers also pass items the vanilla way to each other if they're directly connected to each other
In recent API versions of 1.16.5 players were able to create item duplications. This however, did not occur to older builds of 1.16.5. This update fixes it for these new versions.
- Fixed: BentoBox -> banned players and other roles that are meant to be on the same role as untrusted island players could open the menu, if allow-region-members was enabled
- Fixed: allow-region-members for worldguard
+ Added: Use vanilla suction if hopper has custom suction disabled
+ Added: Recipe (optional) for hopper item: recipe_list
+ Added: Option to disable visualization: link.visualization
+ Improved: Handling of eco at teleportation
- Fixed: Missing loadbefore entries in plugin.yml
- Updated: Latest LandsAPI
- Added: Import hoppers from 3rd party hopper plugin: /UHoppers admin import
You only need to install this update if you use AdvancedChests:
- Added: Support for *latest* version of AdvancedChests API
NOTE: Older AdvancedChestsAPIs are not supported
- Fixed: Possible incompatibility with island hopper limit plugins
- Minor fix with AC support
- Fixed: Issues with AdvancedChests support
- Fixed: Issues with AdvancedChests support
- Fixed: Issues with AdvancedChests support
- Fixed: Minor issues with AdvancedChests support
- Improved: Inventory loading
- Added: AdvancedChest support
Note that this hook is untested as I don't have access to the chest plugin right now. Make sure to report any issues to us on Discord and I'll look into it.
- Added: Coloured Terracotta as smeltable
- Added: Upgrade permissions if upgrade-perm is enabled in config:
uhoppers.upgrade.*:
description: Allow all upgrades if 'upgrade-perm' enabled.
default: op
children:
uhoppers.upgrade.transfer_amount:
description: Allow upgrade if 'upgrade-perm' enabled.
default: op
uhoppers.upgrade.suction_radius:
description: Allow upgrade if 'upgrade-perm' enabled.
default: op
uhoppers.upgrade.links_amount:
description: Allow upgrade if 'upgrade-perm' enabled.
default: op
uhoppers.upgrade.link_distance:
description: Allow upgrade if 'upgrade-perm' enabled.
default: op
- Optimized: Hopper deletion in combination with 3rd party plugins
- Fixed: SQL init when updating from old versions
- Fixed: A sql init error with missing tables for some old versions
- Fixed: Can't remove item from filter if strict filtering enabled
- Fixed: Double chest inv ignored if one side has been broken
- Fixed: Double chest ignored if once side has been broken recently but re-linked again
- Added: CompleteableFuture to the registerHopper method
- Added: Ignore item durability in filter comp
- Improved: Database load times, skip empty regions
- Improved: Database load times, skip empty regions
+ Added: Evenly distribute items if amount smaller than move amount
- Added: Settings
# Link / destination settings
link:
# Should whitelist mode be activated by default?
whitelist: false
# Should strict filtering be enabled by default?
strict: false
- Added: API methods
Register hopper:
/**
* Register a hopper.
*
*
@Param block The block
*
@Param ownerUID Owner of the future hopper
* @throws IllegalArgumentException The block is not a hopper, the world is not a hopper world or the hopper already exists.
* @throws IllegalStateException Method not called on the main thread.
* @throws UnloadedTargetException The chunk is unloaded.
*/
Add link (on hopper):
/**
* Add a link (destination).
*
@Param block Target block.
*
@Param player Optional: send failure messages to the player.
*
@Return null, if the link could not be added.
* @throws IllegalArgumentException The target block is not a block-inventory holder.
* @throws IllegalStateException Not called on main thread.
* @throws UnloadedTargetException The chunk is unloaded.
*/
- Fixed: Suction issue in some cases with 3rd party stackers
- Fixed: Item lore not applying to item without item meta
- Added: Filter null values in config
- Fixed: Pressure plates stopping link mode
- Fixed: Filter paging after adding item
- Improved: Link scheduling algorithm
- Added: You can now rename your links
You may want to update the item in your lang gui file.
Code (YAML):
object:
name
: '&6
{name
}'
lore
:
- '&7Click to manage the filter.'
- ' '
- '&eSHIFT + LEFT CLICK'
- '&7Remove the link.'
- ' '
- '&eSHIFT + RIGHT CLICK'
- '&7Rename the link.'
- ' '
- '&7Type
:
{type
}'
- '&7World
:
{world
}'
- '&7X
:
{x
} Y
:
{y
} Z
:
{z
}'
material
: 'HOPPER'
from
: 10
to
: 45
- Fixed: Minor startup error
- Added: Support for older implementations of the Inventory interface
- Added: Kelp as smeltable
- Updated: German language file
- Added: Support for item move handler on barrels
- Added: Support for wild cards at the worlds list in config.yml
- Added: CLAY_BALL as smeltable
- Added: hashed comparison of filter if strict filtering is turned off
This further improves the performance.
- Fixed: max level item is stone
- Fixed: possible incompatibility with persistent data holder (not confirmed)
- Added: Strict filtering setting
strict:
name: '&8> &6Strict Filtering'
lore:
- '&7Enabled: {enabled}'
- ' '
- '&7If enabled:'
- '&7The filter will filter items'
- '&7additionally by their'
- '&7durability, name, lore'
- '&7and other NBT tags.'
- ' '
- '&7If you, for example, want to'
- '&7filter specific potions and not'
- '&7just all, you''ll need to enable'
- '&7this setting.'
material: 'OAK_DOOR'
slot: 33
- Fixed: Hopper link save in rare cases
- Added: Economy format:
# Set the format of all economy related displays.
# NOTE: This setting requires server reload / restart.
eco-format: '#,###.00'
- Fixed: Link conversion not triggering in some cases
2.0.10
- Added: More smeltable types
2.0.9
- Fixed: Ores to furnace
- Added: Chinese translation zh-CN by
@asd851646427 !
- Fixed: Link load error in some cases
- Added: Extra item for links
links:
name: '&8> &6Manage Links'
lore:
- '&7Click here to manage'
- '&7and edit filters for'
- '&7your linked containers.'
material: 'eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNThiYzhmYTcxNmNhZGQwMDRiODI4Y2IyN2NjMGY2ZjZhZGUzYmU0MTUxMTY4OGNhOWVjZWZmZDE2NDdmYjkifX19'
slot: 23
- Added: Setting to delete no longer used items in default:
# GUI Menu
gui:
# Should unused items from older versions automatically be removed from the gui language file?
# You may not want this if you want to add extra items to the menu.
remove-unused: true
2.0.9
- Fixed: Ores to furnace
- Added: Chinese translation zh-CN by
@asd851646427 !
- Fixed: Link load error in some cases
- Added: Extra item for links
links:
name: '&8> &6Manage Links'
lore:
- '&7Click here to manage'
- '&7and edit filters for'
- '&7your linked containers.'
material: 'eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNThiYzhmYTcxNmNhZGQwMDRiODI4Y2IyN2NjMGY2ZjZhZGUzYmU0MTUxMTY4OGNhOWVjZWZmZDE2NDdmYjkifX19'
slot: 23
- Added: Setting to delete no longer used items in default:
# GUI Menu
gui:
# Should unused items from older versions automatically be removed from the gui language file?
# You may not want this if you want to add extra items to the menu.
remove-unused: true
- Added: Chinese translation zh-CN by
@asd851646427 !
- Fixed: Link load error in some cases
- Added: Extra item for links
links:
name: '&8> &6Manage Links'
lore:
- '&7Click here to manage'
- '&7and edit filters for'
- '&7your linked containers.'
material: 'eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvNThiYzhmYTcxNmNhZGQwMDRiODI4Y2IyN2NjMGY2ZjZhZGUzYmU0MTUxMTY4OGNhOWVjZWZmZDE2NDdmYjkifX19'
slot: 23
- Added: Setting to delete no longer used items in default:
# GUI Menu
gui:
# Should unused items from older versions automatically be removed from the gui language file?
# You may not want this if you want to add extra items to the menu.
remove-unused: true
This version addresses a bug report from our Discord, which could not be reproduced. However, likely this version fixes that.
- Fixed: Inventory dupe in combination with 3rd party plugins
2.0.6
- Fixed: model-data not applying to hopper item
- Added: {cost} placeholder to the hopper item in list menu
object:
name: '&6World: {world} X: {x} Y: {y} Z: {z}'
lore:
- '&7Open hopper menu.'
- ' '
- '&9RIGHT CLICK'
- '&7Teleport to the hopper'
- '&7for&c ${cost}&7.'
material: 'HOPPER'
from: 10
to: 45
2.0.5
- Updated: German language file for new link item in main hopper menu
- Added: Automatically convert filters to new link system
- Fixed: Link transfer progress error after unlinking hopper in some cases
- Changed: Prio smelting for furnaces
- Improved: link loading from SQL database
- Fixed: Hopper not dropping items on delete
2.0.2
- Fixed: Issue with smelt and fuel slot in furnaces from version 2.0.0
- Fixed: Adding stacks to filter that have amount != 1
2.0.1
- Updated: API
- Added: API getLinks() method to Hopper
https://github.com/Angeschossen/UpgradeableHoppersAPI
- Changed: Delete a link with SHIFT + LEFT click in the links menu
object:
name: '&6{type}'
lore:
- '&7Click to manage the filter.'
- ' '
- '&eSHIFT + LEFT CLICK'
- '&7Remove the link.'
- ' '
- '&7World: {world}'
- '&7X: {x} Y: {y} Z: {z}'
material: 'HOPPER'
from: 10
to: 45
This update contains quite a lot internal changes.
Please backup your hoppers database before installing this version!
- Added: Each container can now have own filters
- Added: Each container can now toggle his own filter move
- Added: Each filter now supports potions, banners and all other items
- Added: Each filter now supports custom items from 3rd party plugins
- Added: Disable hopper if it is powered by redstone
- Added: Option to configure suction ticks
# Set the hopper suction tick time (20 ticks are one second)
# You should only change this, if you know what you do.
suction-ticks: 80
- Improved: Changed particle colour for links from lime to red
- Improved: Display filter items delete item in hopper menu by default
Important: The link item has changed:
![[IMG]](/proxy/image?url=https%3A%2F%2Fcdn.discordapp.com%2Fattachments%2F687305222724255744%2F793959915697471559%2F2020-12-30_22.51.14.png)
1.8.19
- Improved: Comparators now also update if the storage changes, not just if the get empty or filled
- Improved: World data load
Fixed: Issue with wildstacker integration, not removing empty stacks instantly
- Improved: Do not take shop items from display
- Fixed issue with WildStacker plugin (not confirmed)
FIXED
- Issue where double chests would get the wrong coordinates causing future unlink to fail
FIXED
- Can not edit default flags (they would reset after a restart)
ADDED
- Support for composters (spigot 1.14+)
1.7.5
FIXED
- ClassCastException on item move event
FIXED
- Nullpointer exception at item transfer event
IMPROVED
- Transfer speed
FIXED
- Disabled suction is ignoring blacklist
1.7.2
FIXED
- Hopper chains filtering did not working properly in same cases
- Items suction not filtering if value is -1
FIXED
- Spelling mistakes (made by me)
Thanks to
@Verum for fixing these!
ADDED
- Links and the hopper will now be visualised with particles while being in link / unlink mode
FIXED
- Suction radius not working properly at east and south
The last block was not collected.
FIXED
- Attempt to unlink a double chest would fail in some cases due wrong block data check
FIXED
- Blast Furnace coal slot
ADDED
- BentoBox support
- 1.16.2 support
IMPROVED
- Updated to latest GUI handler
- Database handling internal
- Removed some logging messages
ADDED
- Ability to disable upgrade-able suction and use vanilla suction instead:
# NOTE: If you want to disable upgradeable suction and enable vanilla hopper suction: Make sure to set at level 1 to -1 to apply it to new hoppers.
FIXED
- Error on 1.13.x startup
1.6.7
FIXED
- Error on 1.13.x due field not found
1.6.6
REMOVED
- The ability to delete a hopper from /Hopper List
Unfortunately this caused incompatibilities with skyblock plugins which do calculate hopper limits by players breaking blocks
The 100% compatible and universal working solution is to let the players just break the blocks, this will delete the hopper as usual.
object:
name: '&6World: {world} X: {x} Y: {y} Z: {z}'
lore:
- '&7Open hopper menu.'
- ' '
- '&9RIGHT CLICK'
- '&7Teleport to hopper.'
material: 'HOPPER'
from: 10
to: 45
ADDED
- Right click will now teleport to the hopper in /Hopper list
# Teleport to hoppers in /Hopper list
# Permission uhoppers.teleport
teleportation:
# Wait x seconds before starting teleportation.
wait: 3
# Set teleportation cost.
cost: 200
1.6.5
FIXED
- BLAST_FURNACE not found error on spigot 1.13.x
FIXED
- Some furnace functionality if liked to hopper
FIXED
- Vanilla hopper convert option in config.yml not working in some cases
1.6.1
ADDED
- Hex color placeholders {#FFFFFF}
- amount: NUMBER option flag for menu items
Example:
information:
name: '&6Information'
lore:
- '&7Here you can view'
- '&7some detailed information'
- '&7about your land. This helps'
- '&7to keep track of all events'
- '&7in your land.'
material: eyJ0ZXh0dXJlcyI6eyJTS0lOIjp7InVybCI6Imh0dHA6Ly90ZXh0dXJlcy5taW5lY3JhZnQubmV0L3RleHR1cmUvMzU3NDcwMTBkODRhYTU2NDgzYjc1ZjYyNDNkOTRmMzRjNTM0NjAzNTg0YjJjYzY4YTQ1YmYzNjU4NDAxMDVmZCJ9fX0=
slot: 11
amount: 10
1.6.0
ADDED
- /Hopper list
This command will open a menu where players can view all their hoppers.
They can open hopper menus an delete hoppers.
- Lands and Skyblock Support (disabled by default)
![[IMG]](/proxy/image?url=https%3A%2F%2Fcdn.discordapp.com%2Fattachments%2F687305222724255744%2F728733313820524574%2F2020-07-04_00.04.34.png)
1.5.5
FIXED
- Playercache save failed due folder deleted at runtime
IMPROVED
- Inventory loading and chunk pausing and resume
- Logging
1.5.4
ADDED
- Message if link target is other players uhopper: link: '&cYou''re not allowed to create a link to this hopper. &7It belongs to&3 {owner}&7.'
FIXED
- Hopper interaction in secondary worlds
- Error on admin teleport command due not existing table in database
IMPROVED
- World loading
FIXED
- Issue where hopper creation got cancelled in certain conditions, but it shouldn't
- Error while saving player cache (skins & names)
FIXED
- Several issues related to world loading and hopper load introduced in last version due changes internally
ADDED
- 1.16 compatibility
FIXED
- Missing dependency error depending on your server setup
1.16 Support will be added as soon as possible

FIXED
- Missing dependency error on startup
1.4.1
ADDED
- Prevent selling uhoppers in ShopGUIPlus (hook not tested, I don't have access to the plugin)
1.4.0
ADDED
- /Hoppers admin player <player>
Get placed hoppers amount.
- /Hoppers admin teleport <id>
Teleport to a upgrade-able hopper
FIXED
- Link load issue on Tunity
The update 1.3.0.9 contains some important refactoring. While there are currently no reported/found issues, we do not recommend using it on live servers yet. If you really need this update, you're good to go, but if you're fine on your current version wait until the change log does not contain this text to let more tests pass.
1.3.1.4
FIXED
- Issue with link unloading and loading when removed via the menu
1.3.1.3
ADDED
- Option to convert vanilla hoppers on placement:
# Should normal hoppers (not from this plugin) be converted on placement?
convert: false
The update 1.3.0.9 contains some important refactoring. While there are currently no reported/found issues, we do not recommend using it on live servers yet. If you really need this update, you're good to go, but if you're fine on your current version wait until the change log does not contain this text to let more tests pass.
1.3.1.3
ADDED
- Option to convert vanilla hoppers on placement:
# Should normal hoppers (not from this plugin) be converted on placement?
convert: false
This update contains some important changes on the inside. Please do not use it on live servers yet.
1.3.1.2
FIXED
- Task resume error and improved load performance
1.3.1.1
FIXED
- Hopper transfer paused
- Other issues reported since last version
IMPROVED
- Hopper pause on chunk unload
- Hopper load
# IMPROVED
- General data structure
- Hopper load and unload handling
- Chunk load listeners
- General transfer performance
- Prevent double hopper load due chunk load event called twice by server
This update contains some important changes on the inside. Please do not use it on live servers yet.
1.3.1.1
FIXED
- Hopper transfer paused
- Other issues reported since last version
IMPROVED
- Hopper pause on chunk unload
- Hopper load
# IMPROVED
- General data structure
- Hopper load and unload handling
- Chunk load listeners
- General transfer performance
- Prevent double hopper load due chunk load event called twice by server
This update contains some important changes on the inside. Please do not use it on live servers yet.
# IMPROVED
- General data structure
- Hopper load and unload handling
- Chunk load listeners
- General transfer performance
- Prevent double hopper load due chunk load event called twice by server
This update contains some important changes in the inside. Please do not use it on live servers yet.
# IMPROVED
- General data structure
- Hopper load and unload handling
- Chunk load listeners
- General transfer performance
- Prevent double hopper load due chunk load event called twice by server
# ADJUSTED Listener priority to prevent issues with other claim plugins
1.3.0.7
+ ADDED Option:
# Protection settings
protection:
# Should upgrade-able hoppers be protected?
# NOTE: If disabled, everyone can destroy, upgrade, open the hopper.
enabled_3: true
+ ADDED A workaround to "fix" a bug present in papers latest version with item transfers
If you use spigot, you don't need this.
+ ADDED Vanilla move setting improvement: If transfer source is ugradeablehopper, suck items faster as usual
This allows fast transfers if using upgradeablehoppers in one row, even with vanilla move on.
1.2.3.7
+ ADDED Option:
# Should hoppers support item sorting in combination with vanilla hoppers?
# This is useful for skyblock servers. However, disabling it will further
# improve your servers performance.
# If disabled, the upgradeablehopper will suck as many item as possible out of
# a vanilla hopper. This reduces item transactions.
# If enabled, the upgradeablehopper will accept transactions with a minimum
# of one item. This makes item sorters in combination with vanilla hoppers possible.
move: false
# FIXED List menu load (filter)
1.2.3.5
# FIXED Hopper whitelist accepted all items when filter was empty.
It will no accept no items if filter is empty
+ ADDED Asynchronous paged menus
# IMPROVED Tasks
1.2.3.4
# FIXED NPE with npc plugin installed
# IMPROVED Filter
+ ADDED Add hopper item to player instead of dropping it
# FIXED /hopper get over-max stetting not allowing value match
1.3.0.2
# FIXED /Uh reload did not load levels
# FIXED Unknown message: no-page
1.2.3.1
# IMPROVED Link / unlink mode: Ignore right clicks to open doors etc.
# FIXED Hoppers does not detect container below for transportation
# IMPROVED Player database storage
# REMOVED Item pull queue from vanilla containers above hoppers
# UPDATED To our latest command handler version
# UPDATED To our latest menu handler version
# FIXED Hopper max limit not working
+ ADDED Support for all furnace types
# FIXED Identifier issue
1.2.9.9
# ADJUSTED Listener priority to improve plugin compatibility
1.2.9.8
+ ADDED Option:
# Allow buying more hoppers even if the player already reached the maximum amount of placed hoppers?
# Command: /Hoppers get [amount]
over-max: true
+ ADDED Message (
sent if over-max disabled):
get:
max: '&cYou can''t buy&4 {amount} &cmore hopper(s). &7You can at most buy&3 {hoppers} &7more hopper(s). &8Permission: uhoppers.hoppers.NUMBER'
This message will be sent if player.hoppers + buyAmount is greater than his uhoppers.hoppers.NUMBER permission.
1.2.9.7
# IMPROVED Database structure for new tables
+ ADDED Id recycling for hopper creations
1.2.9.6
+ ADDED Lands Integration
https://www.spigotmc.org/resources/...ction-gui-management-wars-1-15-support.53313/
# 3rd party plugin integrations
integration:
lands:
# Should players be allowed to place hoppers only in claimed areas where they're trusted?
only-claimed: false
only-claim: '&cYou can''t place any hoppers here. &7You need to place them on your claims.'
# IMPROVED Slightly delayed the hopper creation to "tape fix" wrong event listener priorities in other 3rd party plugins.
# FIXED Disabling hopper suction in the menu will not take effect
Please take a backup of your database before updating!! This version wil convert the current database into a new format.
Please stop your server before installing the update and also take a backup of it. If you encounter any issues, contact us via pm or discord.
# IMPROVED Database performance
# FIXED Database errors
# REMOVED Command debug
# FIXED Item transfer item loss bug
Thanks to
@Cryper96 for helping to fix this bug!
# FIXED Hopper settings would revert if all disabled
This update contains some database changes. Please send us a message if you encounter any issues.
# FIXED Hopper save task interval and databases issues
+ ADDED Option to upgrade menu:
Delete items that did not pass the filter.
NOTE: This will delete all items that do not pass the filter.
NOTE: This item / option is DISABLED BY DEFAULT!
filter-delete:
name: '&8> &cDelete Items'
lore:
- ' '
- '&4&lWARNING: &cIf enabled,'
- '&cthe hopper will delete all'
- '&citems, which aren''t passing'
- '&cyour configured item filter.'
- ' '
- '&7Filter delete: {enabled}'
material: 'REDSTONE_BLOCK'
slot: 25
enabled: false <- Enable here
# FIXED Unknown method error during startup on 1.13.x
# FIXED Unknown method error during startup on 1.13.x
# FIXED Blacklist issue with vanilla links
# FIXED Hopper delete
+ ADDED enabled: false option to all items
# FIXED Blacklist issue with vanilla links
+ ADDED enabled: false option to all items
+ ADDED Seperate item to link containers
# CHANGED Redesigned hopper main menu to make it more organized
# FIXED Hopper delete did not drop the hopper item correctly
# FIXED Issue with skyblock plugins not registering hopper break correctly
To achieve that hoppers will now get deleted if you break them
Only the owner of the hopper can break it.
# CHANGED Upgrade menu now opens with shift + left click
+ ADDED item (GUI file) value: enabled: false
Use this setting to disable a item (remove) from a menu.
Example:
info:
name: '&bPlease confirm this action.'
lore:
- '&7Click &aConfirm &7to confirm or'
- '&cAbort &7to abort this action.'
material: OAK_SIGN
slot: 14
enabled: false
+ ADDED Support for CustomModelData in all menus
Use model-data: NUMBER to set a custom model
Example:
info:
name: '&8> &6Information'
lore:
- '&7Area:&6 {area}'
- '&7Land: {land}'
- '&7World: {world}'
- ' '
- '&7Received:&5 {time}'
- '&7Sender: {sender}'
material: OAK_SIGN
slot: 14
model-data: 1 <- Id of your custom item model
NOTE: This will only work for minecraft 1.14.x - 1.15.x
https://www.planetminecraft.com/for...ring/new-1-14-custom-item-models-tuto-578834/
+ UPDATED To our latest internal messaging and gui api to improve the performance and fix some bugs and errors
If you're enjoying Lands, please consider leaving a review. I would be very happy to read it. A lot of time has been put into previous versions. Also, thanks to all people which are helping to provide support on Discord. If you need any support or have any question, just send us a message.
+ ADDED Compatability for 1.15
Version 1.13.x and 1.14.x are still supported.
Happy bees!

+ ADDED Protection against explosions
# FIXED Players could create douplicates of the upgraded hoppers by spamming deletion
+ ADDED Hopper transfer-ticks setting
# Set the hopper transfer tick time (20 ticks are one second)
# It's not recommended to set this lower than 20.
transfer-ticks: 60
# FIXED Possible link de-synch (not confirmed)
# FIXED Hopper takes all items out of furnace
# FIXED Hopper takes all items out of blast furnace instead of only the result item
# FIXED Unloaded links can cause items disappering in some cases
# IMPROVED Hopper delete process
# IMPROVED Task security and concurrent modification
# FIXED (Not confirmed issue) of hoppers sucking items while deleting
# FIXED Max links amount
# FIXED If you break the Uhopper while the Uhopper is deleting itself (accepting it via GUI), the Uhopper turns into a normal hopper
# FIXED If you break the chest that the hopper is connected to, the transfer will still work and items will disappear
# FIXED List placement in lore at links item
Thanks for reporting!
@Getblock
# FIXEED Config init on startup
# FIXED Links lore not replacing correctly
+ ADDED API
You can access it by using the UpgradeableHoppersAPI class
# FIXED Some task issues
# FIXED Transfer error
# FIXED Config init error
# FIXED /Hopper help command
# FIXED Filter menu
# FIXED Some sql table name issues
# IMPROVED Configuration
# IMPROVED Messages
Please note that json messages are not any longer supported.
Make sure to check your language file
# IMPROVED GUI menu
# IMPROVED Back button placeholders
# INTEGRATED Our PluginAPI
# IMPROVED Garbage collector
# IMPROVED Data unload and save security
+ ADDED Permissions to bypass vanill hopper settings:
uhoppers.bypass.vanilla:
description: Bypass vanilla hopper settings.
default: op
children:
uhoppers.bypass.vanilla.craft:
description: Bypass vanilla hopper craft setting.
default: op
uhoppers.bypass.vanilla.place:
description: Bypass vanilla hopper place setting.
default: op
+ ADDED Option to prevent crafting of normal hoppers
+ ADDED Option to prevent placement of normal hoppers
Please note that hopper crafting and placement is allowed by default.
+ ADDED Message for non allowed craft
+ ADDED Message for non allowed normal hopper placement
# FIXED ItemMoveEvent error with minecarts
# FIXED Chunk unload illegal state error
Thanks for reporting!
@Solder
# IMPROVED Is hopper check
Now the server will regocnize upgradeable hoppers even
if the the chunk wasn't already passed to the plugin.
This feature works only in 1.14.x or higher
# IMPROVED Vanilla transfer prevention
# FIXED Server disturbed item transfer from vanilla container to hopper to container
# FIXED Attempt to fix a bug with vanilla container to hopper (bug was not reproduceable)
# IMPROVED Hopper status and signal management
# IMPROVED Item transfer request
# IMPROVED Item transfer algorithm
# FIXED Newly created links won't accept any items in and out
# IMPROVED Item transfer algorithm
# IMPROVED Item dublication prevention
# IMPROVED Vanilla item handler restrictor
# IMPROVED Hopper state handling
+ ADDED Asynchronous item transfer
# FIXED Some bugs
# IMPROVED Hopper status
NOTE: This update is experimental and a pre-release. It re-adds the asynchronus item transfer. While this will boost your server performance a lot, it's pretty complicated too. We are not aware of any issues, but anyways: It may contain bugs. Thanks!
+ ADDED Completely asynchronus item transfer for links and vanilla links to upgradeable hopper
# FIXED Hopper link error
+ ADDED Message if world is missing on hopper creation
#FIXED Potential performance issue with item transfer task
# FIXED Default economy does not work
# REMOVED Debug message
# IMPROVED Multi-mode item transfer from vanilla containers to upgradeable hoppers
+ ADDED Pending transfer request system
Now the server will ask upgradeable hoppers for item transfer before doing any action
If the hopper allows the request it will move store the items in the hopper storage.
This is needed to prevent plugin hopper getting stuck on blacklisted items
# IMPROVED Minecart hopper item transfer to upgraded hopper
# IMPROVED Performance
# FIXED Hopper could get stuck because of blacklisted item in source container
+ ADDED Experience EXP economy support
Now you can use exp as economy for upgrades etc.
Setting: exp-levels
Default: false
# FIXED Upgrade menu could display wrong suction status
# FIXED Item suction pause did not work
# FIXED Items could get sucked in and deleted in rare cases if no link is created
# FIXED Hopper delete could suck himself
# IMPROVED Vanilla link (default)
# FIXED You were not able to disable the hopper get confirmation
# FIXED Item suction radius not working for items in air
+ ADDED /hopper get confirm command
You can disable this in config.
+ ADDED Hopper will only suck items on ground
# FIXED Item transfer stopping after chunk unload
# FIXED Item suction stopping after chunk unload
# FIXED Bypass Permissions
# FIXED Hopper break on creation
# FIXED Item transfer stopping after chunk unload
# FIXED Item suction stopping after chunk unload
+ ADDED {distance} placeholder to hopper item.
hopper-item:
name: '&aHopper Item'
lore:
- '&7With this item you'
- '&7can create a better'
- '&7hopper by placing'
- '&7it somewhere.'
- ' '
- '&8- &7Owner:&2 {owner}'
- ' '
- '&8- &7Transfer amount:&a {transfer} &7items'
- ' &7Suction radius:&a {suction}'
- ' &7Link amount:&a {links} &7links'
- ' &7Distance:&a {distance} &7blocks'
material: 'HOPPER'
You need to add this to your levels.yml file:
Code (YAML):
# Max distance between a hopper and the link destination.
link-distance:
1:
value
: 100
cost
: 0
2:
value
: 125
cost
: 5000.0
3:
value
: 150
cost
: 7500.0
4:
value
: 200
cost
: 9000.0
# FIXED Default levels.yml
You need to add this to your levels.yml file:
Code (YAML):
# Max distance between a hopper and the link destination.
link-distance:
1:
value
: 100
costs
: 0
2:
value
: 125
costs
: 5000.0
3:
value
: 150
costs
: 7500.0
4:
value
: 200
costs
: 9000.0
+ ADDED Max link distance setting
+ ADDED Upgrade item for max link distance
# FIXED Links to other worlds were possible
# FIXED {owner} placeholder
+ ADDED Bypass permissions:
uhoppers.bypass.*:
description: Bypass protections etc.
default: op
children:
uhoppers.bypass.open:
description: Open other players hoppers.
default: op
uhoppers.bypass.upgrade:
description: Upgrade other players hoppers.
default: op
uhoppers.bypass.delete:
description: Delete other players hoppers.
default: op
# FIXED Some missing placeholders: {owner}
NOTE: This update is expiremental. Install it only, if you currently have issues with your database.
This version improves the performance of the database a lot.
Instead of saving a hopper one by one the plugin will merge all hopper, which need to be saved and save them all together. This is very experimental. Please wait until next version until installing this on a live server. 
+ ADDED New hopper save system
+ ADDED Hopper save thread
# IMPROVED Database performance
# FIXED WildStacker item amount display
# IMPROVED Suction task
# FIXED Item Transfer Error
# FIXED Suction item duplication issue
# FIXED Wildstacker Integration
+ ADDED Ability for hoppers to suck itemstacks that can only be added partly to the hopper inventory
# FIXED Hopper item placement if not owner
NOTE: This version adds a prefix option. So it's recommended to delete all prefixes from the messages. Otherwise the messages will include the prefix two times.
+ ADDED /UpgradeableHoppers reload command
Reload configurations and language.
+ ADDED Prefix option to language file
+ ADDED Suction enable / disable to Upgrade menu
Use right click to toggle suction.
# FIXED Connection pool error on shutdown
+ ADDED Wildstacker plugin support
# FIXED /hopper get command on spigot 1.13.x
# FIXED API issues
# IMPROVED API performance
# IMPROVED World manager performance
# IMPROVED Connection pooling
# FIXED Suction takes item, even if hoppers is full
# FIXED Hopper menu does not open if on max level
+ ADDED Asynchronus item transfer for upgradeable hopper to vanilla hopper
+ ADDED Filter support for item transfer from upgrable hopper to upgrable hopper
# IMPROVED Hopper load performance
# IMPROVED Database speed and stability
# FIXED Some SQL statement issues
# FIXED Hopper save
# IMPROVED Chunk load process
# IMPROVED Asynchronus item transfer
# IMPROVED Data load handling
# IMPROVED Error handling
If you're using spigot / paper 1.14.4: Please install the latest SPIGOT build. Previous 1.14.4 versions have a weird bug included which prevents the hoppers to work after a chunk get's loaded.
+ ADDED Check for connection inactivity
This prevents issues at older MySQL servers
# FIXED Plugin not enabling in spigot 1.13.x
If you're using spigot / paper 1.14.4: Please install the latest SPIGOT build. Previous 1.14.4 versions have a weird bug included which prevents the hoppers to work after a chunk get's loaded.
# IMPROVED Hopper unload handling
# IMRPVED Hopper delete handling
# IMPROVED Transfer and suction task
# IMPROVED Hopper flow
# FIXED Hoppers with 0 links ignoring transfer rate
# FIXED Hoppers with 0 links wont stop transferring even if destination is full
# FIXED Item filter sometimes is not editable
# FIXED Hopper delete issues
# IMPROVED Connection pooling
# FIXED Some multi tread issues
# IMPROVED Performance further by transferring items asychronus
# FIXED Item transfer error
# FIXED Hopper delete error
# FIXED Filter is not working for hopper suction (natural)
If you have any issues with Upgradeable Hoppers, please contact me through a private message or Discord. I'm would be happy to help you!
I put a lot of time into the development. If you're enjoying this plugin, I would be super happy If you would leave a review. Thank you
# IMPROVED SQL database connection
# FIXED Filter type not saving
# FIXED Links not saving
# FIXED Aliases not working in console
+ ADDED Aliases (from config) support to console
# FIXED Item suction removes items on blacklist
# FIXED Item suction takes all items
# FIXED Player save error on shutdown
# FIXED Hoppers in seconds world not loading
+ ADDED Aliases (from config) support to console
# FIXED Item suction removes items on blacklist
# FIXED Item suction takes all items
# FIXED Player save error on shutdown
+ ADDED Filter to hopper
Now you can set item filters to your hoppers
You can do that in the hopper menu
+ ADDED Filter modes: whitelist, blacklist
You can change the filter mode by righ clicking on the
filter item
# FIXED Missing messages at hopper creation
# FIXED Numbered permissions