Advanced Inventory API for your Minecraft Bukkit plugins.
Tested Minecraft versions: 1.7, 1.8, 1.9, 1.10, 1.11, 1.12, 1.13, 1.14
You can use this as a Plugin, or use it as a library (see the docs)
Click here to read the docs on Gitbook
To use the SmartInvs API, either:
plugins
folder 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.InventoryManager
in your plugin (don't forget to call the init()
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 {
mavenCentral()
}
dependencies {
compile 'fr.minuskube.inv:smart-invs:1.2.7'
}
<dependency>
<groupId>fr.minuskube.inv</groupId>
<artifactId>smart-invs</artifactId>
<version>1.2.7</version>
</dependency>
If you have a problem with the API, or you want to request a feature, make an issue here.