Skip to content

Re LPChatPrefix - Configuration

All of the configuration files for Re LPChatPrefix are located in the <game_directory>/config/ directory.

Configuration files:

  • relpchatprefix-server.toml - Server side configuration options for Re LPChatPrefix.
relpchatprefix-server.toml
#Re-LPChatPrefix Configuration
[main]
textParser = "ADVENTURE"
enablePrefix = true
enableSuffix = true
messageFormat = "{prefix}{player}{suffix} <gray><bold>»<reset>"
messageColor = "WHITE"
#Chat Overrides Configuration
[main.chatOverrides]
joinMessage = "<yellow>{prefix}{player}{suffix} joined the game<reset>"
leaveMessage = "<yellow>{prefix}{player}{suffix} left the game<reset>"
#First Join Configuration
[main.firstJoin]
enable = false
message = "<yellow>Welcome {player} to the server!<reset>"

The text parser to use for formatting messages.

  • Default: ADVENTURE

Allowed Values:

  • VANILLA - Use the vanilla Minecraft text parser.
  • EMBERS - Use the Embers Text API text parser. (Requires Embers Text API to be installed)
  • ADVENTURE - Use the Adventure MiniMessage text parser.

Whether to enable the use of prefixes in chat messages.

  • Type: Boolean
  • Default: true

Whether to enable the use of suffixes in chat messages.

  • Type: Boolean
  • Default: true

The format of chat messages. Use {prefix}, {player}, and {suffix} as placeholders.

  • Type: String
  • Default: "{prefix}{player}{suffix} <gray><bold>»<reset>"

The color of the chat message text.

  • Default: WHITE

Allowed Values:

  • BLACK
  • DARK_BLUE
  • DARK_GREEN
  • DARK_AQUA
  • DARK_RED
  • DARK_PURPLE
  • GOLD
  • GRAY
  • DARK_GRAY
  • BLUE
  • GREEN
  • AQUA
  • RED
  • LIGHT_PURPLE
  • YELLOW
  • WHITE

Chat overrides configuration for join and leave messages.

The message format for player join messages. Use {prefix}, {player}, and {suffix} as placeholders.

  • Type: String
  • Default: "<yellow>{prefix}{player}{suffix} joined the game<reset>"

The message format for player leave messages. Use {prefix}, {player}, and {suffix} as placeholders.

  • Type: String
  • Default: "<yellow>{prefix}{player}{suffix} left the game<reset>"

First join configuration for welcome messages.

Whether to enable the first join welcome message.

  • Type: Boolean
  • Default: false

The welcome message format for players joining for the first time. Use {player} as a placeholder.

  • Type: String
  • Default: "<yellow>Welcome {player} to the server!<reset>"