<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
<dependency>
<groupId>com.github.hamza-cskn.obliviate-invs</groupId>
<artifactId>core</artifactId>
<version>{INSERT_VERSION_HERE}</version>
</dependency>
repositories {
maven { url 'https://jitpack.io' }
}
dependencies {
implementation 'com.github.hamza-cskn.obliviate-invs:core:{INSERT_VERSION_HERE}'
//implementation 'com.github.hamza-cskn.obliviate-invs:configurablegui:{INSERT_VERSION_HERE}'
}
ObliviateInvs is an inventory GUI library for Bukkit servers.
Visit wiki page to see usage guide.
- Create, listen, manage GUIs in only one class.
- Create advanced slots to make completely interactive slots. (see wiki)
- Add pagination support to your GUIs easily.
- Create automatic repeat task for GUI. The task will be stopped when GUI closed.
- Fully, modular design.
- Make configurable your GUIs easily.
- Automatically caches configuration items. Doesn't deserializes over and over.
- Don't work hard work smart. These methods will handle your boring works: fillColumn(), fillRow(), fillGui(), sendTitleUpdate(), sendSizeUpdate()
- Allows players clicking their own inventory during they using a GUI.
- Feel safe. obliviate-invs tested in live. It is stable.
- Snake slot iteration algorithm for GUIs: Click to go gist
- ItemBuilder class that is used in this project: Click to go gist
- Gradient and TextAnimation algorithms for GUIs: Click to go gist