Flectone LogoFlectonePulse

Auto

Server messages sent at specific intervals

auto

Information

How to make your own automatic message? For example a reminder about the rules every 5 minutes

In message.yml add a new type to auto.types, where period is 6000 ticks, i.e. 5 minutes

types:
  rules:
    random: false
    destination:
      type: "CHAT"
    ticker:
      enable: true
      period: 6000
    sound:
      enable: false

In localizations → language.yml add a list of messages to message.auto.types. They are shown one after another, and with random: true in random order

types:
  rules:
  - "<fcolor:1>◇ Do not swear in chat"
  - "<fcolor:1>◇ Do not ask admins for items"

In permission.yml add the sound permission to message.auto.types

types:
  rules:
    name: "flectonepulse.module.message.auto.sound"
    type: "TRUE"

Reload FlectonePulse with /flectonepulse reload


Localization

Path localizations → language.yml → message.auto
auto:
  types:
    announcement:
    - "<br><fcolor:1>[*] This server uses <click:open_url:\"https://flectone.net/pulse/\"><hover:show_text:\"<fcolor:2>https://flectone.net/pulse/\"><fcolor:2>FlectonePulse</hover></click> :)<br>"

types

Types of automatic messages with a list

Information

You can add your own with any name or remove existing ones


Setting

Path message.yml → auto
auto:
  enable: false
  types:
    announcement:
      random: true
      destination:
        type: "CHAT"
      ticker:
        enable: true
        period: 9000
      sound:
        enable: false

enable

Enables or disables the functionality of the module

types

Types of automatic messages

Information

You can create your own type:

  types:
    newauto:
      random: true
      destination:
        type: "CHAT"
      ticker:
        enable: true
        period: 9000
      sound:
        enable: false

random

If enabled, messages will be selected randomly; otherwise, they will be selected in order.

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

ticker

Updating every specific interval of time

sound

Sound playback


Permissions

Path permission.yml → message.auto
auto:
  name: "flectonepulse.module.message.auto"
  type: "TRUE"
  types:
    announcement:
      name: "flectonepulse.module.message.auto.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

types

Types of automatic messages and their sound permissions

  • sound

    Permission to use the sound

Last update August 14, 2026
Edit on Github

On this page

Authors of page