Very optimized and highly configureable chunk-loaders plugin!
Go to file
OmerBenGera 19e383ad0b Version 2022.7 2022-09-17 20:41:51 +03:00
.github Update bug reports template 2021-07-09 12:59:03 +03:00
API Fixed npcs can be shown to other players using external mods 2022-07-14 21:50:04 +03:00
Hook_EpicSpawners6 Added support for EpicSpawners 7 (#32) 2022-01-06 23:35:17 +02:00
Hook_EpicSpawners7 Added support for EpicSpawners 7 (#32) 2022-01-06 23:35:17 +02:00
Hook_FactionsUUID Moved FactionsUUID to its own module 2021-12-25 20:54:04 +02:00
Hook_FactionsX Moved FactionsX to its own module 2021-12-25 20:55:38 +02:00
Hook_Lands Added support for Lands 2022-06-03 11:17:38 +03:00
Hook_MassiveFactions Moved Massive Factions to its own module 2021-12-25 20:51:51 +02:00
Hook_SuperiorSkyblock [CI-SKIP] Updated dependencies of BG-Software 2021-12-26 00:25:11 +02:00
gradle/wrapper Removed obfuscated nms in favor of mojang-mappings jars 2022-09-10 21:32:48 +03:00
src/main Fixed incorrect detection of non-supported nms versions 2022-09-17 12:33:35 +03:00
v1_7_R4 Removed obfuscated nms in favor of mojang-mappings jars 2022-09-10 21:32:48 +03:00
v1_8_R3 Removed obfuscated nms in favor of mojang-mappings jars 2022-09-10 21:32:48 +03:00
v1_12_R1 Removed obfuscated nms in favor of mojang-mappings jars 2022-09-10 21:32:48 +03:00
v1_16_R3 Removed obfuscated nms in favor of mojang-mappings jars 2022-09-10 21:32:48 +03:00
v117 Removed obfuscated nms in favor of mojang-mappings jars in 1.17 2022-09-16 19:49:31 +03:00
v119 Removed obfuscated nms in favor of mojang-mappings jars 2022-09-10 21:32:48 +03:00
v1181 Removed obfuscated nms in favor of mojang-mappings jars 2022-09-10 21:32:48 +03:00
v1182 Removed obfuscated nms in favor of mojang-mappings jars 2022-09-10 21:32:48 +03:00
v1191 Removed obfuscated nms in favor of mojang-mappings jars 2022-09-10 21:32:48 +03:00
v1192 Removed obfuscated nms in favor of mojang-mappings jars 2022-09-10 21:32:48 +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 [CI SKIP] Updated readme with 2022 maintained status & code quality 2022-01-15 12:07:12 +02:00
build.gradle Version 2022.7 2022-09-17 20:41:51 +03:00
gradle.properties Merge branch 'dev' of https://github.com/OmerBenGera/WildLoaders into dev 2022-07-09 12:42:08 +03: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 Removed obfuscated nms in favor of mojang-mappings jars in 1.17 2022-09-16 19:49:31 +03:00

README.md

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!

When compiling you will receive errors about missing dependencies.
These dependencies are premium plugins that cannot be published on a public repository.
You can do either of the followings in order to solve it:

  • Add manually all the jar files of the premium plugins.
  • Purchase access to our private repository.
  • Disabling compiling of the modules of these dependencies in the gradle.properties file.

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