Flectone LogoFlectonePulse

Mention

Warning

By default, server administrators cannot be mentioned due to the bypass permission.

If the mentioned player is vanished and the sender cannot see them, the mention will stay in the message, but there will be no ping

This formatting allows mentioning (pinging) a person in a message. You can also mention donation groups, for example, @default. mention


Localization

Path localizations → language.yml → message.format.mention
mention:
  person: "<fcolor:2>You were mentioned!"
  format: "<fcolor:2>@<target>"

person

The message shown to a player when they are mentioned.

format

The message format if it is a player mention.


Setting

Path message.yml → format.mention
mention:
  enable: true
  trigger: "@"
  name_pattern: "<trigger>([\\p{L}\\p{N}_.]*[\\p{L}\\p{N}_])"
  everyone_tag: "here"
  destination:
    type: "TOAST"
    icon: "minecraft:bell"
    subtext: ""
    style: "TASK"
  sound:
    enable: true
    volume: 0.9
    pitch: 1.5
    category: "UI"
    name: "SFX_Drop_Items_Potion"

enable

Enables or disables the functionality of the module

trigger

The symbol that must start the mention message.

Information

If I want to mention Terrona, I should write @Terrona. mention

name_pattern

A regular expression used to find a mention in a message. <trigger> inside it is replaced with the symbol from trigger

Information

By default a mention consists of letters, digits, _ and ., but the last symbol cannot be a dot, so that @Flectone. at the end of a sentence still works

If you want only latin nicknames to be mentioned, write <trigger>([A-Za-z0-9_]+)

everyone_tag

The word that, in combination with the trigger, will mention all players on the server. To use this, the permission flectonepulse.module.message.format.mention.group.default is required.

destination

Where the message will be sent

TypeExplanationRequires additional configuration?
ACTION_BARMessage above the player's inventoryYes
CHATMessage to chatNo
TITLEFullscreen messageYes
SUBTITLEFullscreen message (top line)Yes
TOASTNotification in the bottom right cornerYes

sound

Sound playback


Permissions

Path permission.yml → message.format.mention
mention:
  name: "flectonepulse.module.message.format.mention"
  type: "TRUE"
  group:
    name: "flectonepulse.module.message.format.mention.group"
    type: "OP"
  bypass:
    name: "flectonepulse.module.message.format.mention.bypass"
    type: "FALSE"
  sound:
    name: "flectonepulse.module.message.format.mention.sound"
    type: "TRUE"

name

Permission name

type

Permission type

TypeExplanation
TRUEAvailable to any player
FALSEAvailable to no one, must be granted separately (e.g., using LuckPerms)
OPAvailable to server operators
NOT_OPAvailable to NON-operators of the server

group

The permission to mention a donation group, for example, @default.

Note

Each group checks its own permission: flectonepulse.module.message.format.mention.group.group_name.

bypass

Permission to ignore mentions (not be pinged).

sound

Permission to use the sound

Last update August 20, 2026
Edit on Github

On this page

Authors of page