[Solved] Titles in Minecraft

There is an open issue to add an ‘up title’ (Boss Bar) API

‘item title’ (or Action Bar) is a ChatType, ChatTypes.ACTION_BAR
https://github.com/SpongePowered/SpongeAPI/blob/master/src/main/java/org/spongepowered/api/text/chat/ChatTypes.java#L52

use the sendMessage(ChatType, Text...) method (or similar)

example:
player.sendMessage(ChatTypes.ACTION_BAR, Texts.of("Some text"));

4 Likes