I have done my best to test and fix any issues I have come across, but there may be some inconsistencies from the spigot version. I cannot guarantee support, but I will try :)
An Inventory API for Minestom servers. Supports 1.21.8
- Different types of inventories (Chest, Anvil, Cartography Table, Dropper...)
- Different GUI types (Normal, Paged, Tab, Scroll)
- Nested GUIs (For example use a Scroll-GUI as a tab page)
- Easily customizable (Create your own GUI types and Items)
- VirtualInventory: Store real items inside GUIs, customize maximum stack size per slot, etc.
- Easy way to add localization using the ItemProvider system and the built-in ItemBuilder
- Advanced ItemBuilder (Normal, Potion, Skull, Banner, Firework) with BaseComponent support
- Support for BaseComponents in inventory titles
- Uncloseable inventories
- GUI Animations
- GUI Builder
Maven
<dependency>
<groupId>llc.redstone</groupId>
<artifactId>invui-minestom</artifactId>
<version>VERSION</version>
<type>pom</type>
</dependency>Gradle (Groovy DSL)
implementation 'llc.redstone:invui-minestom:VERSION'Gradle (Kotlin DSL)
implementation("llc.redstone:invui-minestom:VERSION")Check out the InvUI documentation for more information.


