Very optimized and highly configureable chunk-loaders plugin!
Go to file
2023-01-13 16:48:36 +02:00
.github Update bug reports template 2021-07-09 12:59:03 +03:00
API Changed all plugin dependencies to another repository 2022-12-10 16:31:43 +02:00
gradle/wrapper Removed obfuscated nms in favor of mojang-mappings jars 2022-09-10 21:32:48 +03:00
Hook_EpicSpawners6 Changed all plugin dependencies to another repository 2022-12-10 16:31:43 +02:00
Hook_EpicSpawners7 Changed all plugin dependencies to another repository 2022-12-10 16:31:43 +02:00
Hook_FactionsUUID Changed all plugin dependencies to another repository 2022-12-10 16:31:43 +02:00
Hook_FactionsX Changed all plugin dependencies to another repository 2022-12-10 16:31:43 +02:00
Hook_Lands Changed all plugin dependencies to another repository 2022-12-10 16:31:43 +02:00
Hook_MassiveFactions Changed all plugin dependencies to another repository 2022-12-10 16:31:43 +02:00
Hook_SuperiorSkyblock [CI-SKIP] Updated dependencies of BG-Software 2021-12-26 00:25:11 +02:00
src/main Fixed chunk loaders can be placed next to each other and overlap chunks (#64) 2023-01-13 16:48:36 +02:00
v1_7_R4 Fixed loader npcs can get advancements/achievements (#63) 2022-10-08 15:35:10 +03:00
v1_8_R3 Fixed a NPE when placing chunk loaders in 1.8/1.12 (#61) 2022-10-08 15:45:44 +03:00
v1_12_R1 Fixed a NPE when placing chunk loaders in 1.8/1.12 (#61) 2022-10-08 15:45:44 +03:00
v1_16_R3 Fixed loader npcs can get advancements/achievements (#63) 2022-10-08 15:35:10 +03:00
v117 Fixed loader npcs can get advancements/achievements (#63) 2022-10-08 15:35:10 +03:00
v119 Fixed loader npcs can get advancements/achievements (#63) 2022-10-08 15:35:10 +03:00
v1181 Fixed loader npcs can get advancements/achievements (#63) 2022-10-08 15:35:10 +03:00
v1182 Fixed loader npcs can get advancements/achievements (#63) 2022-10-08 15:35:10 +03:00
v1191 Fixed loader npcs can get advancements/achievements (#63) 2022-10-08 15:35:10 +03:00
v1192 Fixed loader npcs can get advancements/achievements (#63) 2022-10-08 15:35:10 +03:00
v1193 Added support for 1.19.3 2022-12-10 14:14:10 +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 Changed all plugin dependencies to another repository 2022-12-10 16:31:43 +02:00
gradle.properties Changed all plugin dependencies to another repository 2022-12-10 16:31:43 +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 Changed all plugin dependencies to another repository 2022-12-10 16:31:43 +02:00
settings.gradle Added support for 1.19.3 2022-12-10 14:14:10 +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