Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/despical/oitc

Kill everyone with your bow and reach 25 points to win!
https://github.com/despical/oitc

bukkit-plugin minecraft minecraft-minigame minecraft-plugin minigame minigame-plugin oitc one-in-the-chamber spigot-plugin

Last synced: 2 months ago
JSON representation

Kill everyone with your bow and reach 25 points to win!

Awesome Lists containing this project

README

        

One in the Chamber

[![](https://github.com/Despical/OITC/actions/workflows/build.yml/badge.svg)](https://github.com/Despical/OITC/actions/workflows/build.yml)
[![](https://img.shields.io/github/v/release/Despical/OITC)](https://github.com/Despical/OITC/releases/latest)
[![](https://jitpack.io/v/Despical/OITC.svg)](https://jitpack.io/#Despical/OITC)
[![](https://img.shields.io/badge/License-GPLv3-blue.svg)](../LICENSE)
[![](https://img.shields.io/badge/javadoc-latest-lime.svg)](https://javadoc.jitpack.io/com/github/Despical/OITC/latest/javadoc/index.html)

One in the Chamber is an old Minecraft minigame. Each player is equipped with a sword, bow and arrow.
The arrows do one hit one kill damage and if player missed the shot they can't receive a new arrow until they die
or killing other players. When a player reaches 25 points the game ends and winner is the player who reached first.

## Documentation
- [Wiki](https://github.com/Despical/OITC/wiki)
- [JavaDocs](https://javadoc.jitpack.io/com/github/Despical/OITC/latest/javadoc/index.html)

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

## 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/OITC/blob/master/LICENSE) file for required notices and attributions.

## Using One in the Chamber API
The project isn't in the Central Repository yet, so specifying a repository is needed.

Maven dependency

```xml

jitpack.io
https://jitpack.io

```
```xml

com.github.Despical
OITC
VERSION
provided

```

Gradle dependency

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

## 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).

## Translations
We are supporting multiple languages such as English, Turkish and German for now.

If you want to help us with translating take a look at our [language repository](https://github.com/Despical/LocaleStorage).

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

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