Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/despical/tntrun
Don't stop running to win and also you can do parkour on the blocks or can you?
https://github.com/despical/tntrun
bukkit bukkit-plugin java minecraft minecraft-minigame minecraft-plugin minigame minigame-plugin spigot-plugin tnt-run
Last synced: about 1 month ago
JSON representation
Don't stop running to win and also you can do parkour on the blocks or can you?
- Host: GitHub
- URL: https://github.com/despical/tntrun
- Owner: Despical
- License: gpl-3.0
- Created: 2020-07-13T16:11:28.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-11-07T17:35:42.000Z (about 2 months ago)
- Last Synced: 2024-11-07T17:45:38.186Z (about 2 months ago)
- Topics: bukkit, bukkit-plugin, java, minecraft, minecraft-minigame, minecraft-plugin, minigame, minigame-plugin, spigot-plugin, tnt-run
- Language: Java
- Homepage: https://spigotmc.org/resources/83196/
- Size: 795 KB
- Stars: 13
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: .github/README.md
- Contributing: CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
TNT Run
[![](https://github.com/Despical/TNTRun/actions/workflows/build.yml/badge.svg)](https://github.com/Despical/TNTRun/actions/workflows/build.yml)
[![](https://img.shields.io/github/v/release/Despical/TNTRun)](https://github.com/Despical/TNTRun/releases/latest)
[![](https://jitpack.io/v/Despical/TNTRun.svg)](https://jitpack.io/#Despical/TNTRun)
[![](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/TNTRun/latest/javadoc/index.html)Players (up to 12 or 24, mostly, depending on the map) are placed on sand/gravel floors. Blocks you run or stand on will disappear or "fall" after a brief delay. Once you fall, you will end up on the next floor below. Each map multiple floors to run on, the lowest floor being above the void which eliminates you. The goal is to be the last player alive which gets progressively more difficult as the space available diminishes.
## Documentation
- [Wiki](https://github.com/Despical/TNTRun/wiki)
- [JavaDocs](https://javadoc.jitpack.io/com/github/Despical/TNTRun/latest/javadoc/index.html)## Donations
- [Patreon](https://www.patreon.com/despical)
- [Buy Me A Coffee](https://www.buymeacoffee.com/despical)## TNT Run API
Maven dependency
```xml
jitpack.io
https://jitpack.io```
```xmlcom.github.Despical
TNTRun
VERSION
provided```
Gradle dependency
```
repositories {
maven { url 'https://jitpack.io' }
}
```
```
dependencies {
compileOnly group: "com.github.Despical", name: "TNTRun", version: "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).## License
This code is under [GPL-3.0 License](http://www.gnu.org/licenses/gpl-3.0.html).See the [LICENSE](../LICENSE) file for required notices and attributions.
## Building from source
To build this project from source code, run the following from Git Bash:
```
git clone https://www.github.com/Despical/TNTRun && cd TNTRun
mvn clean package -Dmaven.javadoc.skip=true
```> [!IMPORTANT]
> **[Maven](https://maven.apache.org/)** must be installed to build this project.