Skip to content

Despical/OITC

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

One in the Chamber

Support

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

Donations

License

This code is under GPL-3.0 License

See the 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
<repository>
    <id>jitpack.io</id>
    <url>https://jitpack.io</url>
</repository>
<dependency>
    <groupId>com.github.Despical</groupId>
    <artifactId>OITC</artifactId>
    <version>LATEST</version>
    <scope>provided</scope>
</dependency>
Gradle dependency
repositories {
    maven { url 'https://jitpack.io' }
}
dependencies {
    compileOnly 'com.github.Despical:OITC:LATEST';
}

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.

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.

Building from source

To build this project from source code, run the following from Git Bash:

git clone https://www.github.com/Despical/OITC.git && cd OITC
mvn clean package -Dmaven.javadoc.skip=true

Note Don't forget to install Maven before building.