Advanced Inventory API for your Minecraft Bukkit plugins.
Note This is a fork of the original SmartInvs project, which appears to be abandoned (Lack of version updates, no response to issues, etc...)
Tested Minecraft versions: 1.21
- Inventories of any type (workbench, chest, furnace, ...)
- Customizable size when possible (chest, ...)
- Custom titles
- Allows to prevent the player from closing its inventory
- Custom listeners for the event related to the inventory
- Iterator for inventory slots
- Page system
- Util methods to fill an inventory's row/column/borders/...
- Actions when player clicks on an item
- Update methods to edit the content of the inventory every tick
To use the SmartInvs API, either:
- Put it in the
pluginsfolder of your server, add it to your dependencies in your plugin.yml (e.g.depend: [SmartInvs]) and add it to the dependencies in your IDE. - Put it inside your plugin jar, initialize an
InventoryManagerin your plugin (don't forget to call theinit()method), and add a.manager(invManager)to your SmartInventory Builders.
You can download the latest version on the Releases page on Github.
You can also use a build system:
repositories {
maven { url 'https://jitpack.io' }
}
dependencies {
implementation 'com.github.rexchoppers:SmartInvs:2.0.0-alpha.3'
}- JavaDoc
- Maven Central release
If you have a problem with the API, or you want to request a feature, make an issue here.
