๐Ÿ‘‹MOTD

The MOTD system shows a welcome message to players when they join the server. It supports different messages for first-time players, returning players, and specific permission groups. Configuration is in features/motd.yml.

Configuration

enabled: true

# Delay before showing MOTD (ticks, 20 = 1 second)
delay-ticks: 40

# Permission to receive MOTD
permission: "lpcpro.motd"

Default MOTD

Shown to returning players who don't match any group:

default:
  - ""
  - "<gradient:gold:yellow>โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”</gradient>"
  - ""
  - "  <gold>Welcome back, <white>{player}<gold>!</gold>"
  - ""
  - "  <gray>Online players: <white>{online}/{max}</white>"
  - ""
  - "  <aqua>/help</aqua> <gray>- View commands"
  - "  <aqua>/rules</aqua> <gray>- View server rules"
  - "  <aqua>/discord</aqua> <gray>- Join our Discord"
  - ""
  - "<gradient:gold:yellow>โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”โ”</gradient>"
  - ""

First Join MOTD

Shown only on a player's very first join:

Group-Specific MOTDs

Show different MOTDs based on permission:

Groups are checked in order โ€” the first matching group is used. If no group matches, the default MOTD is shown.

Placeholders

Placeholder
Description

{player}

Player name

{displayname}

Player display name

{online}

Online player count

{max}

Max player count

{world}

Player's world name

Last updated