- Tested Minecraft Versions:
- 1.8
- 1.9
- 1.10
- 1.11
- 1.12
![]()
See this plugin live on my test server
testplugins.com
InventoryFull is a very small plugin that alerts players when they don't have inventory space!
Simply enable any of the following ways to alert players in the config file and use /invfull reload. After the alert type is enabled, when players get a full inventiry they will be alerted!
InventoryFull allows you to send the alert 5 different ways
ChatMessage
send an inventory full message through chat!
Actionbar (Requires ActionAnnouncer)
send an inventory full message through the actionbar!
Title and subtitle (Requires TitleManager)
send an inventory full message through the Title and subtitle!
Holograms (Requires HolographicDisplays)
send an inventory full message with a hologram!
Sound
play a sound to a player when they have a full inventory!
There is also an API that will allow you to listen to a special event that is fired when a player has a full inventory and breaks a block that won't fit!
Here is an example:Code (Text):@EventHandler
public void onFull(InventoryFullEvent e) {
//player with full inventory
Player p = e.getPlayer();
//item that does not fit in players inventory
ItemStack i = e.getItem();
}
Commands require players to have the permission inventoryfull.admin to be used!
/invfull
View the plugin version
/invfull reload
reload the config.yml
Code (Text):inventoryfull.admin:
description: Ability to use /inventoryfull and /inventoryfull reload
default: op
inventoryfull.alert:
description: be alerted when your inventory is full and you mine a block that won't fit!
default: true
Code (Text):# InventoryFull version 1.5.2
# Created by: extended_clip
# Valid placeholders:
# %block% - display the dropped item type
# %player% - display the players name
#
# For valid sounds, visit http://jd.bukkit.org/rb/apidocs/org/bukkit/Sound.html
cooldown_time: 1
max_alerts_until_cooldown: 10000
sound_when_full:
enabled: true
sound: NOTE_PLING
volume: 10
pitch: 1
chat_message:
use_chat_message: false
message:
- '&cYour inventory is full!'
actionannouncer:
use_actionbar: true
display_time: 5
message:
- '&cYour inventory is full!'
- '&4Your inventory is full!'
- '&eYour inventory is full!'
- '&6Your inventory is full!'
titlemanager:
use_title: false
title: ''
subtitle: '&cYour inventory is full!'
fade_in: 12
fade_out: 12
duration: 20
use_actionbar: false
actionbar_message: '&cYou don''t have room in your inventory'
holographicdisplays:
use_hologram: false
message:
- '&cYour inventory'
- '&cis full!'
display_time: 5
If my plugins have helped your server and you want to buy me a RedBull or something, click the button below to donate to me!

InventoryFull 1.8
Totally customizable alert plugin to inform players when they don't have inventory space!
Recent Updates
- 1.8 Updated to Spigot 1.9 API Apr 5, 2016
- 1.7.1 fixed bug where inventory is considered full if you do not have a backpack with VKBackPack Jul 28, 2015
- 1.7 added support for VKBackPacks Jul 28, 2015