Expandable Minecraft server plugin for island-type games like SkyBlock or AcidIsland.
Go to file
tastybento 4868b61223 Added sonar-project.properties file to specific project key 2019-10-29 20:13:01 -07:00
.github Put BentoBoxWorld PaypalMe link in FUNDING.yml 2019-10-19 22:19:02 +02:00
src Added protection around addon onDisable(). 2019-10-29 17:52:24 -07:00
.gitignore Added command rank settings and extra ranks. 2018-08-11 21:08:04 -07:00
.travis.yml Changed sonarcloud organization bentobox-world 2019-10-29 19:08:12 -07:00
LICENSE Change license 2018-02-10 11:25:32 +01:00
README.md Fixed the Sonarcloud badges in README 2019-10-29 11:42:06 +01:00
pom.xml updated sonarcloud org 2019-10-29 19:45:51 -07:00
sonar-project.properties Added sonar-project.properties file to specific project key 2019-10-29 20:13:01 -07:00

README.md

BentoBox

Discord Build Status Lines of Code Maintainability Rating Reliability Rating Security Rating Bugs

BentoBox is an expandable Minecraft 1.13+ Spigot plugin for island-type games like SkyBlock or AcidIsland.

About BentoBox

History

ASkyBlock and AcidIsland were originally created by tastybento. These two plugins were sharing the same codebase, which grew fastly but ultimately became hard to maintain. Poslovitch was running a Skyblock server before starting to contribute regularly on ASkyBlock's codebase.

Then came the idea of completely rewriting ASkyBlock. A turning point that would be called BSkyBlock. In May 2017, tastybento agreed to the idea, and Poslovitch and him spent more time developing the code of the plugin which would become BentoBox. During summer 2018, ASkyBlock's support got dropped and development was focused on the now called plugin BentoBox, which would then take over ASkyBlock and AcidIsland for 1.13+ servers.

Description

BentoBox introduces a unique Addon system and a powerful API which allows for a technically unlimited customization of the gamemodes. Therefore, BentoBox does nothing on its own: addons and gamemodes are bringing the features.

BentoBox being totally free and open-sourced, we are confident in seeing this platform grow and become even more powerful in the future.

Start now to create the server you've dreamed of!

Addons

These include some popular Gamemodes:

  • BSkyBlock: the successor to the popular ASkyBlock.
  • AcidIsland: you are marooned in a sea of acid!
  • CaveBlock: try to live underground!
  • SkyGrid: survive in world made up of scattered blocks - what an adventure!

And these include some of the official Addons that are bringing incredible new features, such as:

  • Level: calculate your island level and show a top ten.
  • Challenges: gives your players challenges to accomplish.
  • WarpSigns: enables players to plant a warp sign and visit other player's islands.
  • Biomes: enables players to change biomes on islands.
  • invSwitcher: allows you to split inventories between the different gamemode worlds.
  • VoidPortals: teleports to the dimensions by falling into the Void:
  • MagicCobblestoneGenerator: generates any blocks in cobblestone generators.
  • IslandFly: allows your players to fly on their islands.
  • Limits: limits blocks and entities that your players can place on their islands.
  • Greenhouses: enables players to make mini biome glass houses on their island.

And there are plenty of other official or community-made Addons you can try and use for your server!

Documentation

Downloads

Webtool

A webtool is currently being developed to allow you to easily setup BentoBox and Addons on your server.

Developers

  • Jenkins (untested and mostly unstable builds)

What about contributing?

BentoBox heavily relies on the community that gets involved in its development. You don't need to know any programming language to start helping us.

However, your contribution must be in agreement with:

Report bugs and suggest features

Bugs and feature requests must be filed on our issue tracker.

Pull requests

We consider Pull Requests from non-collaborators that contain actual code improvements or bug fixes. Do not submit PRs that only address code formatting because they will not be accepted.

API

BentoBox uses Maven, and its Maven repository is kindly provided by CodeMC.

Maven

<repositories>
  <repository>
    <id>codemc-repo</id>
    <url>https://repo.codemc.org/repository/maven-public/</url>
  </repository>
</repositories>

<dependencies>
  <dependency>
    <groupId>world.bentobox</groupId>
    <artifactId>bentobox</artifactId>
    <version>PUT-VERSION-HERE</version>
    <scope>provided</scope>
  </dependency>
</dependencies>

Gradle

repositories {
  maven { url "https://repo.codemc.org/repository/maven-public/" }
}

dependencies {
  compileOnly 'world.bentobox:bentobox:PUT-VERSION-HERE'
}