Messages

EasySell provides full customization of all plugin messages. This page explains every message option in messages.yml.

Message Structure

Each message has three properties:

message-key:
  enabled: true          # Whether to show this message
  message: 'Your text'   # The message content
  type: CHAT             # How to display the message

Message Types

Type
Description

CHAT

Standard chat message

ACTIONBAR

Action bar (above hotbar)

TITLE

Large center-screen title

SUBTITLE

Smaller text below title

BOTH

Chat + Action bar

All Messages

no-permission

Shown when a player lacks permission for a command.


items-sold-title

Main title shown when items are sold successfully.

Placeholders:

  • %total% - Total money earned (formatted)


amount-sold-subtitle

Subtitle with additional sale details.

Placeholders:

  • %items% - Number of items sold

  • %total% - Total money earned


no-items-to-selling

Shown when the sell GUI is closed with no valid items.


item-not-sellable

Shown when an item cannot be sold (price is 0 or not configured).


item-worth

Shown when using the /worth command.

Placeholders:

  • %item% - Item name

  • %worth% - Item's sell value


worth-display-disabled

Shown when a player tries to use a feature while worth display is off.


worth-display-enabled

Confirmation when worth display is enabled.

Color Codes

Legacy Colors

Code
Color

&0

Black

&1

Dark Blue

&2

Dark Green

&3

Dark Aqua

&4

Dark Red

&5

Dark Purple

&6

Gold

&7

Gray

&8

Dark Gray

&9

Blue

&a

Green

&b

Aqua

&c

Red

&d

Light Purple

&e

Yellow

&f

White

Formatting Codes

Code
Effect

&l

Bold

&o

Italic

&n

Underline

&m

Strikethrough

&k

Obfuscated

&r

Reset

Hex Colors

Use #RRGGBB format for custom colors:

Example Configurations

Minimal Messages

Detailed Messages

Tips

  1. Disable unused messages - Set enabled: false for cleaner experience

  2. Use appropriate types - Titles for important info, action bar for quick feedback

  3. Keep it concise - Short messages are easier to read

  4. Test colors - Join the server to verify colors look correct

  5. Escape quotes - Use '' for single quotes in YAML


Last updated