Skip to content

Tab List Settings 1.8+

Representing the [tab_list] section in server.toml.

Both the header and the footer supports MiniMessage formatting for colors and styling.

Enabled

When setting enabled to true you must ensure both the header and footer are defined.

toml
[tab_list]
enabled = true
header = "<bold>Welcome to PicoLimbo</bold>"
footer = "<green>Enjoy your stay!</green>"

You can disable the tab list feature completely by setting enabled to false. In this case, you don't have to define the header and the footer.

toml
[tab_list]
enabled = false

The header text displayed at the top of the player list.

toml
[tab_list]
enabled = true
header = "<bold>Welcome to PicoLimbo</bold>"

The header can be disabled by setting an empty string:

toml
[tab_list]
enabled = true
header = ""

The footer text displayed at the bottom of the player list.

toml
[tab_list]
enabled = true
footer = "<green>Enjoy your stay!</green>"

The footer can be disabled by setting an empty string:

toml
[tab_list]
enabled = true
footer = ""

Released under the MIT License.