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 |
||
|---|---|---|
| gradle/wrapper | ||
| src/main | ||
| .gitattributes | ||
| .gitignore | ||
| build.gradle | ||
| gradlew | ||
| gradlew.bat | ||
| LICENSE | ||
| README.md | ||
| settings.gradle | ||
SimpleTab
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.