SpeedTab is a customizable tab plugin for the Velocity Minecraft proxy. It allows you to set custom headers and footers in the Minecraft tab list across different servers, with support for colour codes and formatting.
- Customizable tab headers and footers.
- Different headers and footers for different servers.
- Support for Minecraft colour codes and formatting.
- Reload config with a command
/speedtabreload. - Permission node for the reload command.
- Download the latest release of SpeedTab from the Releases page.
- Place the downloaded JAR file in the
pluginsdirectory of your Velocity server. - Start your Velocity server to generate the default configuration file.
- Reload config -
/speedtabreload
- Reload config -
speedtab.reloadBy default no one has the permission other than the console. To grant the permission to a player, you will need a permissions plugin installed on Velocity, and in the backend server (eg: Paper). This was tested with LuckPerms installed on Velocity and Paper, both connected up to the same MySQL server with thespeedtab.reloadpermission applied to my player.
After running the server for the first time with SpeedTab installed, a default configuration file will be created in the plugins/speedtab directory.
The configuration file config.conf allows you to customize the tab headers and footers. Here is the default configuration:
default {
tabTitle = "&aWelcome to &bSpeedTab!"
tabFooter = "&cEnjoy your stay!"
}
servers {
lobby {
tabTitle = "&aWelcome to the &bLobby!"
tabFooter = "&cEnjoy your time in the Lobby!"
}
survival {
tabTitle = "&aWelcome to &bSurvival!"
tabFooter = "&cEnjoy your time in Survival!"
}
// Add more servers as required.
}For headers and footers for different servers to work, the server names should match exactly what you have in your velocity.toml file. The plugin will fallback to the default headers and footers if needed.
SpeedTab supports Minecraft colour codes and formatting codes. Use the following codes in your configuration file:
- &0 - Black
- &1 - Dark Blue
- &2 - Dark Green
- &3 - Dark Aqua
- &4 - Dark Red
- &5 - Dark Purple
- &6 - Gold
- &7 - Gray
- &8 - Dark Gray
- &9 - Blue
- &a - Green
- &b - Aqua
- &c - Red
- &d - Light Purple
- &e - Yellow
- &f - White
- &k - Obfuscated
- &l - Bold
- &m - Strikethrough
- &n - Underlined
- &o - Italic
- &r - Reset
- Java 21
- Maven
Clone the repository and build the plugin using Maven:
git clone https://github.com/AdrianJoeK/speedtab.git
cd speedtab
mvn packageThe compiled JAR file will be located in the target directory.
SpeedTab is licensed under the AGPL-3.0 License. See the LICENSE file for more details.
Contributions are welcome! Please open an issue or submit a pull request on GitHub.
- Velocity - The Minecraft proxy server that SpeedTab is built for.
- Configurate - The library used for configuration management.
- MiniMessage - The library used for text formatting.