Overview

Official documentation for creating addons that integrate with Zentrix Battle Royale.

Features

  • Query games, players, teams, phases, and stats

  • React to gameplay via events

  • Register custom recipes with craft limits

  • Store addon data under plugins/Zentrix/addons/<addon-id>/

Quick Start

public final class MyAddon extends ZentrixAddon {
    @Override
    protected void onAddonEnable() {
        // Access the API
        ZentrixAPI api = ZentrixAPI.get();
        
        // Use services
        api.getGameService().getActiveGames();
    }
}

Resources

Requirements

  • Java 21+

  • Paper 1.21.9-.1.21.10

  • Zentrix plugin installed

Last updated