All Projects → BG-Software-LLC → WildChests

BG-Software-LLC / WildChests

Licence: GPL-3.0 license
Sell chests, auto crafters, storage units, larger chests and more in one plugin!

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to WildChests

Payload
Fail-safe asynchronous profile & object caching via Redis & MongoDB in Java for Spigot
Stars: ✭ 23 (+15%)
Mutual labels:  spigot
ResourcepacksPlugins
Set resource packs on whole proxy, per server and per world!
Stars: ✭ 47 (+135%)
Mutual labels:  spigot
Mohist
Minecraft Forge Hybrid server implementing the Spigot/Bukkit API, formerly known as Thermos/Cauldron/MCPC+
Stars: ✭ 861 (+4205%)
Mutual labels:  spigot
advanced-region-market
A Bukkit/Spigot plugin for renting/selling WorldGuard regions
Stars: ✭ 40 (+100%)
Mutual labels:  spigot
OtherDrops
An updated version of the OtherDrops plugin originally by Cyclo and Zarius; updated by CoolLord22
Stars: ✭ 19 (-5%)
Mutual labels:  spigot
MinecraftDeveloperGuide
📝Minecraft developer Chinese guide,我的世界开发者中文指南
Stars: ✭ 1,307 (+6435%)
Mutual labels:  spigot
BedWars
Simple BedWars minigame plugin for Spigot version 1.9.4 - 1.19
Stars: ✭ 186 (+830%)
Mutual labels:  spigot
DragonTravel
A plugin for the Minecraft-servermods "Bukkit" and "Spigot".
Stars: ✭ 17 (-15%)
Mutual labels:  spigot
Purpur
Purpur is a drop-in replacement for Paper servers designed for configurability, and new fun and exciting gameplay features.
Stars: ✭ 1,224 (+6020%)
Mutual labels:  spigot
ReflectionHelper
API for accessing various classes and their members using reflection. (Specifically for Minecraft)
Stars: ✭ 34 (+70%)
Mutual labels:  spigot
TradePlus
Easy-to-use, highly configurable trading plugin for Spigot- and Bukkit-based Minecraft servers.
Stars: ✭ 42 (+110%)
Mutual labels:  spigot
Hotpur
A fork of Purpur that aims to improve performance and add FabricMC compatibility.
Stars: ✭ 17 (-15%)
Mutual labels:  spigot
KibblePatcher
KibbleLands Spigot patcher
Stars: ✭ 25 (+25%)
Mutual labels:  spigot
PacketWrapper
Packet wrapper classes for ProtocolLib
Stars: ✭ 157 (+685%)
Mutual labels:  spigot
NoSpawnChunks
Helps manage server memory by dynamically unloading chunks
Stars: ✭ 21 (+5%)
Mutual labels:  spigot
AntiCheatReloaded
The free anti-cheat since 2016
Stars: ✭ 94 (+370%)
Mutual labels:  spigot
SquidGame
Minecraft Minigame inspired by the famous and trending Netflix series "Squid Game"
Stars: ✭ 36 (+80%)
Mutual labels:  spigot
MinecraftNetwork
Minecraft server network backend
Stars: ✭ 35 (+75%)
Mutual labels:  spigot
ScriptBlockPlus
任意のブロックにスクリプトを追加するプラグインです。
Stars: ✭ 25 (+25%)
Mutual labels:  spigot
MythicDrops
Action RPG drops for Spigot.
Stars: ✭ 28 (+40%)
Mutual labels:  spigot

New era of chests!



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:
  • QuantumShop by NightExpress [link]
  • ShopGUIPlus (v1.20 & v1.43) by brcdev [link]

API

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

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].