Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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

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-File

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