Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/boxbeam/redcommands
A powerful command framework for Spigot plugins
https://github.com/boxbeam/redcommands
Last synced: about 2 months ago
JSON representation
A powerful command framework for Spigot plugins
- Host: GitHub
- URL: https://github.com/boxbeam/redcommands
- Owner: boxbeam
- License: mit
- Created: 2021-08-20T19:36:00.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2023-01-03T16:09:25.000Z (almost 2 years ago)
- Last Synced: 2023-12-11T02:27:03.492Z (about 1 year ago)
- Language: Java
- Size: 160 KB
- Stars: 1
- Watchers: 2
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# RedCommands
A powerful command framework for Spigot plugins using a custom file format. Support for rdcml file format in Intellij: https://github.com/Ciel-MC/RedLib-Command-FileSupport Discord: https://discord.gg/agu5xGy2YZ
# Installation for Development
Gradle:
```groovy
repositories {
maven { url 'https://redempt.dev' }
}```
```groovy
dependencies {
compileOnly 'com.github.Redempt:RedCommands:Tag'
}
```Replace `Tag` with a release tag for RedLib. Example: `1.5.3.1`. You can also use `master` as the tag to get the latest version, though you will have to clear your gradle caches in order to update it.
Maven:
```xml
redempt.dev
https://redempt.dev```
```xml
com.github.Redempt
RedCommands
Tag
provided```
Replace `Tag` with a release tag for RedLib. Example: `1.5.3.1`. You can also use `master` as the tag to get the latest version, though you will have to clear your maven caches in order to update it.# Usage
For information on how to use RedCommands, please see the [Command Manager section in the RedLib wiki](https://github.com/Redempt/RedLib/wiki/Command-Manager).