Compatibility
Minecraft: Java Edition
1.21.x
1.20.x
1.19.x
1.18.x
Platforms
Creators
Details
Licensed Apache-2.0
Published 6 days ago
Updated 2 weeks ago
ItemClear
ItemClear is a simple Minecraft plugin for Spigot/Paper servers that automatically removes items from players' inventories after a configurable delay. This can help prevent item clutter and manage server performance.
Features
- Automatically removes items when picked up.
- Automatically removes items when crafted.
- Configurable delay for item removal:
- Exact mode: items are removed after a fixed time.
- Random mode: items are removed after a random time between a minimum and maximum value.
- Works with any item type except air.
- Lightweight and easy to use.
Installation
- Download the latest release of ItemClear.
- Place the
.jarfile into your server'spluginsfolder. - Start the server to generate the default
config.yml. - Configure the plugin in
plugins/ItemClear/config.ymlas desired. - Restart or reload the server.
Configuration
The configuration file (config.yml) contains the following options:
# Mode of item removal
# "exact" = remove items after a fixed time
# "random" = remove items after a random time between min and max
mode: exact
# Used only in exact mode
exactTimeSeconds: 60
# Used only in random mode
randomMinSeconds: 30
randomMaxSeconds: 120


