Very optimized and highly configureable chunk-loaders plugin!
Go to file
OmerBenGera 0a1273f6a6 Version 1.0.1 2021-11-06 14:42:02 +02:00
.github Update bug reports template 2021-07-09 12:59:03 +03:00
API Added gradle, license and more 2021-01-01 19:40:42 +02:00
gradle/wrapper Fix gradle to compile 1.17 nms with Java 16 2021-06-11 22:16:18 +03:00
src/main Fixed loaders can be moved with pistons 2021-08-31 20:43:52 +03:00
v1_7_R4 Fixed dummy connection objects being private causing reflection-access to not work (#28) 2021-10-15 17:59:53 +03:00
v1_8_R3 Fixed dummy connection objects being private causing reflection-access to not work (#28) 2021-10-15 17:59:53 +03:00
v1_12_R1 Fixed dummy connection objects being private causing reflection-access to not work (#28) 2021-10-15 17:59:53 +03:00
v1_15_R1 Fixed dummy connection objects being private causing reflection-access to not work (#28) 2021-10-15 17:59:53 +03:00
v1_16_R3 Fixed dummy connection objects being private causing reflection-access to not work (#28) 2021-10-15 17:59:53 +03:00
v1_17_R1 Updated 1.17 support be compiled with Paper 2021-10-15 18:01:34 +03: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
LICENSE Added gradle, license and more 2021-01-01 19:40:42 +02:00
README.md Updated maintenance for 2021 in readme 2021-07-17 12:59:25 +03:00
build.gradle Version 1.0.1 2021-11-06 14:42: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
settings.gradle Fix gradle to compile 1.17 nms with Java 16 2021-06-11 22:16:18 +03:00

README.md

The best alternative for alts!



Compiling

You can compile the project using gradlew.
Run gradlew shadowJar build in console to build the project.
You can find already compiled jars on our Jenkins hub!
You must add yourself all the private jars or purchase access to our private repository.

Private Jars:
  • EpicSpawners by Songoda [link]

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