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.
This code is under GPL-3.0 License.
See the LICENSE file for required notices and attributions.
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>VERSION</version>
<scope>provided</scope>
</dependency>
Gradle dependency
repositories {
maven { url 'https://jitpack.io' }
}
dependencies {
compileOnly 'com.github.Despical:OITC:VERSION';
}
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.
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.
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 must be installed to build this project.