Valyrox / WildStacker

Stacked drops, stacked entities, stacked blocks and stacked spawners in one plugin!

Home Page:https://bg-software.com/wildstacker/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

The first ever multi-threaded stacking solution!



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:
  • Boss (latest & v3.9.7) by kangarko [link]
  • Citizens by fullwall [link]
  • CustomBosses by AMinecraftDev
  • EpicBosses by Songoda [link]
  • EpicSpawners (v5 & v6) by Songoda [link]
  • FabledSkyblock by Songoda [link]
  • mcMMO (v1 & v2) by nossr50 [link]
  • PlotSquared (legacy, v4 & v5) by IntellectualSites [link]
  • ShopGUIPlus (v1.18 & v1.20) by brcdev [link]

API

The plugin is packed with a rich API for interacting with entities, items 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 by 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>WildStackerAPI</artifactId>
        <version>latest</version>
    </dependency>
</dependencies>
Gradle
repositories {
    maven { url 'https://repo.bg-software.com/repository/api/' }
}

dependencies {
    compileOnly 'com.bgsoftware:WildStackerAPI: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

About

Stacked drops, stacked entities, stacked blocks and stacked spawners in one plugin!

https://bg-software.com/wildstacker/

License:GNU General Public License v3.0


Languages

Language:Java 100.0%