Skip to Content
ColorparserUsage

Basic Usage

Don’t forget to check out the MiniMessage Documentation so you can style messages to their full potential!

Simple Example

A ColorParser is always instantiated with the ColorParser#of(String str) method. The string is only serialized into a Component when ColorParser#build() is executed (Which returns the Component).

This is the simplest example of serializing a MiniMessage string into a Component.

ColorParser.of("<green>Teleported to you.").build();

Methods

parseMinimessagePlaceholder

The parseMinimessagePlaceholder() method allows you to dynamically replace custom tags with a String or any ComponentLike value.

player.sendMessage( ColorParser.of("<green><player> Teleported to you.") .parseMinimessagePlaceholder("player", player.getName()) // Replace <player> with the players username .build(); );

parseLegacy

The parseLegacy() method replaces all old color & style tags with their MiniMessage equivalents.

player.sendMessage( ColorParser.of("&6So<green>me §5String &4Here") .parseLegacy() // You only need to run this once to replace all legacy formatting codes .build(); );

parsePAPIPlaceholders

Note

If PAPI isn’t installed on the server this method does nothing. You can use this method to parse PlaceholderAPI placeholders.

Component message = ColorParser.of("Your Displayname is: %player_displayname%") .parsePAPIPlaceholders(player) .build(); player.sendMessage(message);

Examples

Custom message color and hover message.

player.sendMessage( ColorParser.of("<#00ff00><hover:show_text:'<red>test'>R G B!") .build(); );

Add as many placeholders as you’d like, and have backwards compatibility!

player.sendMessage( ColorParser.of("<green><player1> Teleported &6to <player2>.") .parseMinimessagePlaceholder("player1", player.getName()) .parseMinimessagePlaceholder("player2", otherPlayer.getName()) .parseLegacy() .build(); );
player.sendMessage( ColorParser.of("Your Displayname is: %player_displayname%") .parsePAPIPlaceholders(player) .build(); );

Usage on older versions/incompatible Adventure versions

If you try to use ColorParser on platforms that implement older versions of adventure, you should use one of adventures platform serializers.

Here is an example of using ColorParser with modern adventure on ancient paper-1.8.8:

First ensure you add and shade adventure and the adventure platform:

Add Modern Adventure

dependencies { implementation("net.kyori:adventure-api:VERSION") implementation("net.kyori:adventure-text-minimessage:VERSION") implementation("net.kyori:adventure-platform-bukkit:VERSION") // Add platform support }

Now use the adventure platform to send you components!

adventure.player(player).sendMessage( ColorParser.of("<red>Hello old &a<b>Minecraft!") .parsePAPIPlaceholders(player) .parseLegacy() .build() );
Last updated on