How To Edit Chat Formatting

This guide explains how to change the chat formatting in our setups. It will also explain how to add custom placeholders into the chat formatting.

Difficulty: Easy

Plugins used for Chat Formating

In all of our setups, we use the plugins listed below for chat formatting. This means that if you want to edit the chat formatting, these are the plugins to configure.

  • LPC (LuckPermsChat)

  • LuckPerms

  • Essentials

LPC (LuckPermsChat)

The LPC plugin is the main plugin for chat message formatting in all of our setups. To configure this plugin, you need to open the LPC config.yml file.

In this config.yml file, you will find the chat-format setting.

chat-format: "{prefix}{displayname}&r &7➠ &f{message}"

This is where the default chat format for all players is configured. So when a player sends a message in the chat, this will be the layout for the message. The {message} placeholder is the message that the player sends. The {displayname} placeholder is nickname/name of the player sending the message. And the {prefix} placeholder is the prefixes that the player has, which is configured in the LuckPerms plugin.

We recommend not to remove/edit any of the existing placeholders. But you can change the message color or use another arrow instead of this ➠. You can also add placeholders to the chat formatting.

Per group chat formatting

You can also have different chat formats depending on which group the player is in. This can be configured here:

group-formats:
#  default: "[default] {name}&r: {message}"
#  admin: "[admin] {name}&r: {message}"

Remove the # infront of the groups.


Editing FAQ

How do I show tags from /tags in the chat?

From standard, player tags are only shown in the TAB. If you want a player's tag to show when they send send a message in chat, you can add the %deluxetags_tag% to the chat-format setting in the LPC config.yml like this:

chat-format: "&f%deluxetags_tag% {prefix}{displayname}&r &7➠ &f{message}"

Last updated