Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/despical/kotl

A classical Minecraft minigame.
https://github.com/despical/kotl

bukkit-plugin java king-of-the-ladder kotl minecraft minecraft-plugin minigame minigame-plugin spigot-plugin

Last synced: 5 days ago
JSON representation

A classical Minecraft minigame.

Awesome Lists containing this project

README

        

King of the Ladder

[![](https://github.com/Despical/KOTL/actions/workflows/build.yml/badge.svg?branch=master)](https://github.com/Despical/KOTL/actions/workflows/build.yml)
[![](https://jitpack.io/v/Despical/KOTL.svg)](https://jitpack.io/#Despical/KOTL)
[![](https://img.shields.io/badge/JavaDocs-latest-lime.svg)](https://javadoc.jitpack.io/com/github/Despical/KOTL/latest/javadoc/index.html)
[![](https://img.shields.io/badge/Buy%20Me%20A%20Coffee-Support-lime.svg?logo=BuyMeACoffee)](https://www.buymeacoffee.com/despical)

King of the Ladder is an old Minecraft minigame that supports almost every version. Each player have to kick other players
out of the ladders to be the king. The king tries to stand on the top of the ladders while not letting others to climb and
punching them out of the way! If you have any problem with this plugin check out our [wiki](https://github.com/Despical/KOTL/wiki).
If you still didn't find an answer see documentation section below.

## Documentation
- [Wiki](https://github.com/Despical/KOTL/wiki)
- [JavaDocs](https://javadoc.jitpack.io/com/github/Despical/KOTL/latest/javadoc/index.html)
- [Tutorial Video](https://www.youtube.com/watch?v=O_vkf_J4OgY)

## Donations
- [Patreon](https://www.patreon.com/despical)
- [Buy Me A Coffee](https://www.buymeacoffee.com/despical)

## Using King of the Ladder API

Maven dependency

```xml

jitpack.io
https://jitpack.io

```
```xml

com.github.Despical
KOTL
VERSION
provided

```

Gradle dependency

```gradle
repositories {
maven { url 'https://jitpack.io' }
}
```
```gradle
dependencies {
compileOnly 'com.github.Despical:KOTL:VERSION';
}
```

## License
This code is under [GPL-3.0 License](http://www.gnu.org/licenses/gpl-3.0.html)

See the [LICENSE](https://github.com/Despical/KOTL/blob/master/LICENSE) file for required notices and attributions.

## Contributing

I accept Pull Requests via GitHub. There are some guidelines which will make applying PRs easier for me:
+ Ensure you didn't use spaces! Please use tabs for indentation.
+ Respect the code style.
+ Do not increase the version numbers in any examples files and the README.md to the new version that this Pull Request would represent.
+ Create minimal diffs - disable on save actions like reformat source code or organize imports. If you feel the source code should be reformatted create a separate PR for this change.

You can learn more about contributing via GitHub in [contribution guidelines](../CONTRIBUTING.md).

## Building from source
To build this project from source code, run the following from Git Bash:
```
git clone https://www.github.com/Despical/KOTL.git && cd KOTL
mvn clean package -Dmaven.javadoc.skip=true
```

> [!IMPORTANT]
> **[Maven](https://maven.apache.org/)** must be installed to build KOTL.