For the complete documentation index, see llms.txt. This page is also available as Markdown.

Developer API

Getting started

The current API version is: 2.0.0

Project Dependency

pom.xml
<repositories>
    <repository>
    <id>hypera-releases</id>
    <url>https://repo.hypera.dev/releases/</url>
  </repository>
</repositories>

<dependencies>
    <dependency>
    <groupId>dev.hypera</groupId>
    <artifactId>UltraStaffChatPro-API</artifactId>
    <version>(version)</version>
  </dependency>
</dependencies>
build.gradle.kts
repositories {
    maven("https://repo.hypera.dev/releases/")
}

dependencies {
    compileOnly("dev.hypera:UltraStaffChatPro-API:(version)")
}

Plugin Dependency

In order to use UltraStaffChatPro's API, you must declare UltraStaffChatPro as a dependency of your plugin. This causes UltraStaffChatPro to be loaded before your plugin, making it possible for your plugin to use UltraStaffChatPro's API.

Declare UltraStaffChatPro as a dependency in your paper-plugin.yml file. PaperMC Documentation

Declare UltraStaffChatPro as a dependency in your plugin.yml file.

Declare ultrastaffchatpro as a dependency in your @Plugin annotation. Velocity documentation

Declare UltraStaffChatPro as a dependency in your bungee.yml (or plugin.yml) file.

Examples

Last updated

Was this helpful?