Mentions

Mentions are a way to mention players (just like discord) when @'ing the player and can be customized to each group/chat style

# Players can mention others by typing @username in chat
mentions:
  default: # LP GROUP
    highlight: ALL # ALL = highlight entire message, NAME = only highlight the @name
    color: yellow # MiniMessage format without brackets (<>)
    bold: true
    italic: false
    sound:
      enabled: true
      sound: minecraft:ui.hud.bubble_pop
      volume: 1.0
      pitch: 1.0
The Different Highlight Modes, Highlight Name Highlights ONLY the name, While Highlights ALL highlights the ENTIRE message

Mention @everyone and everyone gets pinged!

# Everyone mention feature (@everyone)
# Control who can use @everyone mentions
mention_everyone:
  # Whether the feature is enabled
  enabled: true
  # Permission required to use @everyone (uses primary LuckPerms group)
  permission: owner
  # Highlight settings for @everyone mentions (uses the viewer's mention settings)
  # Special sound for @everyone mentions (overrides normal mention sound)
  sound:
    enabled: true
    sound: minecraft:entity.experience_orb.pickup
    volume: 1.0
    pitch: 1.3

Hover And Click, Mentions Addition

Just like the chat formatting, hover and click works the same way but a bit different, look at the config for more information on how to do it

# Hover and click settings for mentions
# These settings are applied to the highlighted parts, whether its ALL text or NAME only
hover_n_click_mentions:
  click:
    action: SUGGEST_COMMAND
    value: /msg {player}
  hover:
    - 'line 1'
    - '<gradient:red:gold>This {player} mentioned you'

It will automatically overrite any existing HNC's and replace ONLY the highlighted part with the new HNC!

Last updated