Title 1.8+
Represents the [title] section in server.toml for controlling title/subtitle effects.
Enabled
When setting enabled to true you must define all title properties.
toml
[title]
enabled = true
title = "<bold>Welcome!</bold>"
subtitle = "Enjoy your stay"
fade_in = 10
stay = 70
fade_out = 20You can disable the title feature completely by setting enabled to false. In this case, you don't need to define any other properties.
toml
[title]
enabled = falseTitle
The main title text displayed to players. Supports MiniMessage formatting for colors and styling.
toml
[title]
enabled = true
title = "<green><italic>Welcome to PicoLimbo!</italic></green>"Sub Title
The subtitle text displayed below the main title. Supports MiniMessage formatting.
toml
[title]
enabled = true
subtitle = "Enjoy your stay"Fade In
The number of ticks (1 second = 20 ticks) to fade in the title effect.
Default: 10 (0.5 seconds)
toml
[title]
enabled = true
fade_in = 10Stay
The number of ticks the title stays visible at full opacity.
Default: 70 (3.5 seconds)
toml
[title]
enabled = true
stay = 70Fade Out
The number of ticks to fade out the title effect.
Default: 20 (1 second)
toml
[title]
enabled = true
fade_out = 20