A very simple and lightweight tablist plugin.
Find a file
arslee07 53143443fe 1.8+ support using ProtocolLib
If ProtocolLib is not installed, the plugin will fall back to the built-in API (1.13+ only). If ProtocolLib fails to start, SimpleTab will also not be enabled.

The amount of LOC is now 2 times larger. :P
2024-05-02 20:52:56 +09:00
gradle/wrapper initial 2022-12-22 22:33:55 +09:00
src/main 1.8+ support using ProtocolLib 2024-05-02 20:52:56 +09:00
.gitattributes initial 2022-12-22 22:33:55 +09:00
.gitignore initial 2022-12-22 22:33:55 +09:00
build.gradle 1.8+ support using ProtocolLib 2024-05-02 20:52:56 +09:00
gradlew initial 2022-12-22 22:33:55 +09:00
gradlew.bat initial 2022-12-22 22:33:55 +09:00
LICENSE change license to MIT and refine readme 2024-05-01 20:26:25 +05:00
README.md change license to MIT and refine readme 2024-05-01 20:26:25 +05:00
settings.gradle initial 2022-12-22 22:33:55 +09:00

SimpleTab

Modrinth Downloads

SimpleTab is a Paper/Spigot (+forks) plugin that implements the tablist (player list) header/footer configuration and dynamic information.

It has support for formatting codes using the ampersand (&) character and support for PlaceholderAPI.

Installation

You can download the plugin on Modrinth (recommended) or from the Releases page. Or you could compile the plugin from source.

Building

Gradle is required to build the plugin. Clone the repository, then in the folder execute gradle build. The compliled .jar file is going to be in build/libs/

Configuration

The configuration file will be created on first launch of your server with the plugin, it's going to be in plugins/SimpleTab/config.yml. It's going to look like this:

# Text above player list
header: "A cool header"

# Text below player list
footer: "And a very cool footer"

# Update period in ticks (1 tick = 50ms)
updatePeriod: 20

You can use \n for newlines as well as &+char for formatting. You can also use %placeholder% for dynamic information, if you have PlaceholderAPI installed.

Take a look at the example configuration that uses all 3 features.