AdvancedItemControl is a lightweight and user-friendly Minecraft plugin designed to limit the quantity of specific items a player can carry in their inventory.
Features
Configure individual limits for specific items (e.g., Ender Pearls, Golden Apples).
Set flexible check intervals to monitor inventories efficiently.
Bypass limits with permissions for trusted players or administrators.
Exclude specific game modes (e.g., Creative) from inventory checks.
Blacklist worlds where item limits are not enforced.
Customizable messages for player notifications and enforcement actions.
Config
Code (YAML):
# Items section: Specifies item limits for each type items: # Players can carry a maximum of 4 Totems of Undying TOTEM_OF_UNDYING: 4
settings: # Specifies how often (in minutes) to check inventories for limit violations check_loop: 5
# Enables logging of limit violations for monitoring purposes do_log: true
# Allows players with the "aic.bypass" permission to bypass all inventory limits bypass_permission: true
# Grants server operators (OPs) the ability to bypass limits unless explicitly overridden bypass_op: true
# Excludes specific game modes from inventory checks # Available options: CREATIVE, ADVENTURE, SURVIVAL ignore_game_modes: - CREATIVE
# Specifies worlds where inventory limits are not enforced # Leave empty to apply limits to all worlds blacklist_worlds: [] messages:
pickup_limit: "§cYou have reached your limit of picking up this item!" drop_amount: "You had to many items of one kind! I helped you dropping %dropAmount% items"