This repo contains UX (user experience) module for hitori framework
- Storage for additional user data (+ default local implementation)
- Custom name tags via TextDisplay's
- Chat processing
- Global & local chat (+ api to add another channels)
- Direct messages
- Player ignoring
- Mentions, URL processing, Style formatting and Replacements (placeholders for players to use in chat, e.g. deaths, playtime, ping)
- Tab processing
- Header, footer
- Player tab name
- Objective's
- Events & Streams announcements
You can get a jar from Actions tab. Module is built after almost every commit.
Also, you can get module from Releases (if there's any).
After downloading the jar, just put it into hitori folder. Then restart the server.
You may need to use Storage or other API's of this module.
So, this module is published via JitPack
maven
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories> <dependency>
<groupId>com.github.modoruru</groupId>
<artifactId>hitori-ux</artifactId>
<version>version</version>
</dependency>gradle
repositories {
// ...
maven { url 'https://jitpack.io' }
}dependencies {
// ...
implementation 'com.github.modoruru:hitori-ux:version'
}