Перейти к содержимому
Mineforgian

AdvancementLib

A small plugin library for custom advancement triggering.

Загрузки
282
Подписчики
1
Обновлён
3 июля 2025 г.
Лицензия
GPL-3.0-or-later

Опубликован 19 июня 2025 г.

AdvancementLib

Javadoc License Java Version PaperMC Modrinth Downloads

AdvancementLib is a modern, fluent Java library for creating custom advancements in PaperMC Minecraft plugins.
It lets you easily register and manage advancements that respond to any Bukkit event, using a powerful builder-based API.


✨ Features

  • Register custom triggers: Listen for any Bukkit event (e.g., block break, entity death, player action) as an advancement trigger.
  • Custom conditions: Define your own logic to decide when an advancement should progress or be granted—perfect for unique gameplay challenges.
  • Support for vanilla & custom advancements: Grant both built-in Minecraft advancements and your own custom ones.
  • Progress tracking: Easily set multistep advancements (e.g., "break 100 blocks") with automatic progress tracking per player.
  • Builder API: Use a fluent builder to configure triggers, conditions, and progress logic.
  • Custom progress increments: Determine how much progress each event grants (default is 1, but can be customized).

🚀 Getting Started

1. Add as a Dependency

Add AdvancementLib as a dependency in your project using your preferred build tool or project setup method.

Note: Add the PaperMC repository if not already present.

2. Basic Usage

Register an Advancement

import io.github.lambdaphoenix.advancementLib.AdvancementAPI;

AdvancementAPI api = new AdvancementAPI(plugin);

api.register(BlockBreakEvent.class)
    .advancementKey("myplugin:break_10_stone")
    .condition(
        (player, event) -> event.getBlock().getType() == Material.STONE
    )
    .targetValue(10)
    .grantMode(GrantMode.ALL_AT_ONCE)
    .build();

Grant Modes

  • ALL_AT_ONCE: Grants the advancement when the target is reached.
  • STEP_BY_STEP: Grants one criterion at a time (shows progress bar in-game).

Custom Player Extractor

api.register(CustomEvent.class)
    .advancementKey("myplugin:custom_event")
    .playerExtractor(event -> event.getWhoDidIt())
    .build();

📚 API Highlights & Documentation

  • AdvancementAPI – Main entry point for registering advancements.
  • AdvancementRegisterBuilder – Fluent builder for all advancement options.
  • GrantMode – Enum for grant behavior: all at once or step-by-step.
  • PlayerExtractor – Interface for mapping any event to a Player.

The latest Javadoc is automatically published to GitHub Pages:

➡️ View the Javadoc here

Центр версий

3 версий
  • Релиз14 КБ
  • Релиз13 КБ
  • Релиз13 КБ

Ченджлог

0.3.2Релиз1.21.6, 1.21.7, 1.21.8 · 3 июля 2025 г.

Progress only after parent progression

Added

  • Added the possibility to progress an advancement only if the parent advancement has been completed
0.3.1Релиз1.21.5, 1.21.6, 1.21.7 · 3 июля 2025 г.

Revoke advancements again!

Added

  • Added the possibility to reset the progress or the entire advancement for a player
0.3.0Релиз1.21.5, 1.21.6, 1.21.7 · 1 июля 2025 г.

⚠️ Breaking Change: Package Name

Changed

  • Package name changed to io.github.lambdaphoenix.advancementLib

Комментарии

Загружаем…