-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Leonardo Luiz Gava edited this page Jan 4, 2023
·
10 revisions
This page is in development!
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependency>
<groupId>com.github.llgava</groupId>
<artifactId>neelix</artifactId>
<version>VERSION</version>
</dependency>repositories {
...
maven { url 'https://jitpack.io' }
}
dependencies {
implementation 'com.github.llgava:neelix:VERSION'
}public final class MyPlugin extends JavaPlugin {
@Override
public void onEnable() {
Neelix.init(this); // or Neelix.initialize(this)
}
}
Creating your first custom configuration file
Creating your first subcommand
- Introduction
- Creating subcommand class
- Registering subcommands on parent command
- Registering parent command
- Using subcommand as CommandExecutor
Creating subcommand fail listener
Creating Custom Inventories WIP 🚧
- Introduction
- Creating your first Simple Inventory
- Creating your first Paginated Inventory
- What is the locked slots parameter?
- Creating Inventory Items
- Creating Custom Navigation
- Registering your inventories