Skip to content

zippo-store/HypeGradients

Repository files navigation

Contributors Forks Stargazers Issues AGPLv3 License bStats Players bStats Servers


HypeGradients

Modify every message in minecraft with ease and make your server beautiful

Report Bug · Request Feature

Table of Contents
  1. About The Project
  2. Roadmap
  3. License
  4. API

About The Project

HypeGradients is a spigot plugin that takes every message from the server and modifies it how you want.

Initially, HypeGradients was made for making gradients with the help of PlaceholderAPI. But I found out that I can do more and so with the help of ProtocolLib I had the possibility to get every message of what the server sends to the client.

Check out the roadmap for what features will be coming next!

Roadmap

Check current projects

Contributions are what make the open-source community such an amazing place to learn, inspire, and create.
Any contributions you make are greatly appreciated!
If you're new to contributing to open-source projects, you can follow this guide to get up-to-speed.

License

Distributed under the MIT License See LICENSE for more information.

API

If you want to use HypeGradients in your project you can use Maven or Gradle, thanks to JitPack! I recommend to use the Build module because it contains everything

Maven

Step 1. Add the JitPack repository to your build file

    <repositories>
        <repository>
            <id>jitpack.io</id>
            <url>https://jitpack.io</url>
        </repository>
    </repositories>

Step 2. Add the dependency

    <dependency>
        <groupId>com.github.zippo-store.HypeGradients</groupId>
        <artifactId>HypeGradients-Build</artifactId>
        <version>1.1.0</version>
        <scope>provided</scope>
    </dependency>

Gradle

Step 1. Add it in your root build.gradle at the end of repositories:

    allprojects {
        repositories {
            maven { url 'https://jitpack.io' }
        }
    }

Step 2. Add the dependency

    dependencies {
        implementation 'com.github.zippo-store.HypeGradients:HypeGradients-Build:1.1.0'
    }

Usage

Check out this example project that uses HypeGradients API Static Badge

If you wanna know more about the API, take a look at the wiki! (TODO)