AuroraLib
ModrinthBase plugin for every Aurora project. Provides common utilities and functions.
4.2k загрузок 17 подписчиков обновлено 2mo ago
последняя v2.5.3 Modrinth
AuroraLib
This is the base plugin for every Aurora plugin.
It requires PaperMC as the server software and Java 21 or higher.
Folia is also supported.
You can view the full documentation here.
It provides the following utilities:
- chat/actionbar messaging, text building using every possible color formats and styles.
- custom logger
- automatic yaml to class mapping and config versioning
- plugin dependency management
- inventory menu/gui builder with premade configs
- user data management via file or mysql (mysql can sync between servers as well)
- builtin user metadata store with placeholder support
- economy expansion with builtin providers (CMI, EssentialsX, Vault)
- placeholder expansion to interact with PAPI
- configurable number formatting (regular and short formats as well)
- player placed block tracker (supporting flatfile or sqlite as storage)
which integrates with Multiverse-Core and WildRegeneration for cleanup. It can even handle manual chunk deletions. - WorldGuard expansion to provide events like
PlayerRegionEnterEventandPlayerRegionLeaveEvent CommandDispatcherto easily dispatch commands from config files- Common leveler / level matcher / level reward utilities.
- Item resolver/builder interface which supports items from other plugins.
- Leaderboard APIs
Include it in your project
Maven
<repository>
<id>auroramc</id>
<url>https://repo.auroramc.gg/releases/</url>
</repository>
<dependency>
<groupId>gg.auroramc</groupId>
<artifactId>Aurora</artifactId>
<version>{VERSION}</version>
<scope>provided</scope>
</dependency>
Gradle
Groovy DSL:
repositories {
maven {
url "https://repo.auroramc.gg/releases/"
}
}
dependencies {
compileOnly 'gg.auroramc:Aurora:{VERSION}'
}
Kotlin DSL:
repositories {
maven("https://repo.auroramc.gg/releases/")
}
dependencies {
compileOnly("gg.auroramc:Aurora:{VERSION}")
}
Версии
Release
2.5.0
- Add CraftEngine as an item resolver
- Add CrackShot as an item resolver
- Highly improve `/aurora debug itemid <level>` command
- Make every type of reward a…
Release
2.4.1
- Fill placeholders in menus even if localization provider is not set
- Make slots option higher priority than default slot
Release
2.4.0
## Per player localization support added
https://docs.auroramc.gg/aurora/per-player-localization
`messages.yml` is now `messages_en.yml` and you can create…
Release
2.3.4
- Add item resolver priorities to config
- Add item resolver for KGenerators plugin using `kgenerators:generator_id`
- Add item interop for every supported…
Release
2.3.3
- Mark blocks as player placed that are created using a builder wand from WildTools
- Extend the API of RegionExpansion to work with just locations instead of…
Release
2.3.1
- Add support for ItemEdit in item resolvers with syntax `itemedit:server_item_id`
- Add support for EvenMoreFish **2.0** in item resolvers with sytanx:…
Release
2.2.0
**New features**
- Add `[meta] meta-key <comparator> value` condition/requirement
- Add `===` for placeholder and meta requirements to check equality between…
Release
2.1.6
- Hotfix CommandDisptacher
Update to this if you are on 2.1.5, otherwise your close menu buttons with [close] action won't work.

Комментарии 0
Пока нет комментариев. Будь первым, кто поделится мнением.