Skip to main content

Developer API

In order to facilitate the use of many useful functionalities in Goxy. We have created a plugin along with an API that you can use to create your plugins.

Dependencies

First of all, you need to add goxy-api as a dependency of your plugin project.

build.gradle
repositories {
maven {
url "https://repo.goxy.pl"
}
}

dependencies {
compileOnly "pl.goxy.minecraft:goxy-api:0.0.0"
}

Remember to add dependencies to plugin.yml

plugin.yml
softdepend:
- "goxy"

or

plugin.yml
depend:
- "goxy"

Plugin API Documentation

The code of our plugin is available as open source, you can find it here.