Very optimized and highly configureable chunk-loaders plugin!
Go to file
2025-01-02 21:33:05 +02:00
.github Update bug reports template 2021-07-09 12:59:03 +03:00
API Adds the ability for plugins to have custom implementation for changing range of spawners 2024-11-16 12:30:26 +02:00
gradle/wrapper Fixed compiling errors with Paper's hard-fork 2024-12-27 16:17:49 +02:00
Hooks [CI SKIP] Do not build against Java 16 & update userdev 2025-01-02 21:33:05 +02:00
NMS [CI SKIP] Do not build against Java 16 & update userdev 2025-01-02 21:33:05 +02:00
src/main Fixed errors when disabling the plugin due to running new tasks (#100) 2024-12-21 11:17:14 +02:00
.gitattributes Added gradle, license and more 2021-01-01 19:40:42 +02:00
.gitignore [CI SKIP] Adjust .gitignore to include Intellij's files and output files 2021-06-12 18:45:30 +03:00
build.gradle Fixed compiling errors with Paper's hard-fork 2024-12-27 16:17:49 +02:00
gradle.properties Adds support to SpawnerLegacy (#111) 2024-11-16 12:40:02 +02:00
gradlew Added gradle, license and more 2021-01-01 19:40:42 +02:00
gradlew.bat Added gradle, license and more 2021-01-01 19:40:42 +02:00
LICENSE Added gradle, license and more 2021-01-01 19:40:42 +02:00
README.md [CI SKIP] Updated README 2024-05-11 20:44:45 +03:00
settings.gradle Adds support to 1.21.4 2024-12-07 12:35:11 +02:00

The best alternative for alts!



Compiling

You can compile the project using gradlew.
Run gradlew build in console to build the project.
You can find already compiled jars on our Jenkins hub!

API

The plugin is packed with a rich API for interacting with chunk loaders and more. When hooking into the plugin, it's highly recommended to only use the API and not the compiled plugin, as the API methods are not only commented, but also will not get removed or changed unless they are marked as deprecated. This means that when using the API, you won't have to do any additional changes to your code between updates.

Maven
<repositories>
    <repository>
        <id>bg-repo</id>
        <url>https://repo.bg-software.com/repository/api/</url>
    </repository>
</repositories>

<dependencies>
    <dependency>
        <groupId>com.bgsoftware</groupId>
        <artifactId>WildLoadersAPI</artifactId>
        <version>latest</version>
    </dependency>
</dependencies>
Gradle
repositories {
    maven { url 'https://repo.bg-software.com/repository/api/' }
}

dependencies {
    compileOnly 'com.bgsoftware:WildLoadersAPI:latest'
}

Updates

This plugin is provided "as is", which means no updates or new features are guaranteed. We will do our best to keep updating and pushing new updates, and you are more than welcome to contribute your time as well and make pull requests for bug fixes.

License

This plugin is licensed under GNU GPL v3.0