Logo
MINECRAFTBIBLE
Items
Items

All game items

Blocks
Blocks

Building blocks

Mobs
Mobs

Creatures & monsters

Biomes
Biomes

World biomes

Structures
Structures

Generated structures

Recipes
Recipes

Crafting guides

Advancements
Advancements

Achievements

Loot Tables
Loot Tables

Drop rates

Tags
Tags

Item groupings

All Versions
View all data →
Capes
Cape ArchiveNEW

Browse rare Minecon capes, OptiFine capes, and custom capes from players worldwide

Browse

Player Database
Player DatabasePopular

Search any player

Skin Browser
Skin Browser

Browse & download skins

Cape Gallery
Cape GalleryNEW

Minecon & OptiFine capes

Seed Vault
Seed Vault

Curated seeds

Learn

Guides
GuidesNew

Tutorials & tips

Blog
Blog

News & updates

Community

Community Hub
Community HubHub

Posts, discussions & more

All Versions
View community →
Seed Analyzer
Seed Analyzer

World seed analysis

Loot Explorer
Loot Explorer

Drop rates

Crafting Calculator
Crafting Calculator

Material planning

Enchant Calculator
Enchant Calculator

Probability math

Redstone Lab
Redstone Lab

Signal timing

Trading Profit
Trading Profit

Villager ROI

All Versions
View all tools →
Mods
Mods

Browse all mods

Plugins
Plugins

Server plugins

Resource Packs
Resource Packs

Textures & sounds

Shaders
Shaders

Visual enhancements

Datapacks
Datapacks

World logic

Scanner
Mod Intelligence

Scan & analyze any mod

All Versions
View all mods →
Loading...
IntroductionIntroductionVersion HistoryVersion HistoryGuidesGuidesBlog & NewsBlog & News
ItemsItemsBlocksBlocksMobsMobsRecipesRecipesBiomesBiomesStructuresStructuresAdvancementsAdvancementsLoot TablesLoot TablesTagsTags
ModsModsPluginsPluginsResource PacksResource PacksShadersShadersDatapacksDatapacks

MinecraftBible

The Ultimate Wiki

Logo
MINECRAFTBIBLE

The ultimate Minecraft reference. Every item, block, mob, and recipe documented with precision.

Community

  • Skin Browser
  • Cape Gallery
  • Seed Vault
  • Blog
  • Guides

Database

  • Items
  • Blocks
  • Mobs
  • Recipes
  • Biomes
  • Structures

Tools

  • Seed Analyzer
  • Mod Intelligence
  • Crafting Calculator
  • Enchant Calculator

Mods & Packs

  • Mods
  • Plugins
  • Resource Packs
  • Shaders
  • Datapacks

Site & Legal

  • About
  • Authors
  • Editorial Policy
  • Corrections
  • Contact
  • Privacy Policy
  • Terms of Service
  • DMCA
  • Sitemap

© 2026 MinecraftBible. Not affiliated with Mojang or Microsoft.

PrivacyTermsContact
HyacinthHello
PluginAGPL-3.0-only

HyacinthHello

Simple plugin for players to set their own custom join, leave, and death messages

1.1K
Downloads
9
Followers
3 months ago
Updated
📦
19
Versions
socialutilitypaperpurpurspigotvelocity
Download Latestv2.5.0View on Modrinth

📖About HyacinthHello

HyacinthHello

Simple plugin for players to set their own custom join, leave, and death messages.

Messages can be set from /joinmsg, /leavemsg, and /deathmsg and are stored in the plugin directory under PlayerDatabase.

See a demo at https://www.youtube.com/watch?v=L6Li0QnvPis.

Commands

Messages are set with commands. You can clear a message by passing a blank value.

  • /joinmsg [message]
  • /leavemsg [message]
  • /deathmsg [message]

Moderators can override messages of other users if they have the hyacinthhello.mod permission node.

  • /hh mod joinmsg [user] [message]
  • /hh mod leavemsg [user] [message]
  • /hh mod deathmsg [user] [message]

Configuration

The configuration allows you to modify how the plugin looks. Here's an example:

enabled: true # Whether to enable the plugin
proxy-mode: false # Whether to enable Velocity support (see below)
proxy-redis: # Ignore if above is false
  address: 0.0.0.0 # Your redis address, this is likely fine
  port: 6379 # Your redis port, this is likely fine
  channel: hyacinthhello # Leave default, unless you have multiple proxies with HyacinthHello
  ssl: false # Leave blank unless you know you have to change this
  pass: # Leave blank unless you know what to put here
database:
  type: yaml # Default is yaml. Other options are mysql or postgres
  # If you chose yaml, you can ignore the rest of the database config
  host: 0.0.0.0
  port: 3306 # Default mysql is 3306, postgres is 5432
  db: hyacinthhello # Create this
  user: # Fill this in
  pass: # Fill this in
economy:
  enabled: false # Whether to charge for changing messages
  type: 'vault' # Options are vault or playerpoints
  cost: # PlayerPoints only supports whole numbers (eg 10.0, not 10.5)
    joinmsg: 10.0
    leavemsg: 10.0
    deathmsg: 10.0
prefix: "" # Prefix before command responses
wrapper-left: "&e&o" # Prefix for messages
wrapper-right: "" # Suffix for messages
maximum-message-length: 60 # Checked when player sets message
regex-filters: # Regex filters don't need to be wrapped in /
  - "simpleexactmatch"
  - "t[a-zA-Z]st"

Economy

Supports either Vault or Rosewood Development's PlayerPoints.

Players will not be charged for clearing their message, only setting it.

Permissions

  • hyacinthhello.use to use any commands
  • hyacinthhello.mod to use mod commands
  • hyacinthhello.joinmsg to set and have join messages sent
  • hyacinthhello.leavemsg to set and have leave messages sent
  • hyacinthhello.deathmsg to set and have death messages sent
  • hyacinthhello.color to use color in messages

Placeholders

Each message type has its own placeholder. Placeholders will not include the wrappers set in the config.

  • %hyacinthhello_join%
  • %hyacinthhello_leave%
  • %hyacinthhello_death%

Placeholders will also have color and formatting in them if the player has permission. You can exclude that:

  • %hyacinthhello_join-clean%
  • %hyacinthhello_leave-clean%
  • %hyacinthhello_death-clean%

You can also pass a username to get a specific player's message.

  • %hyacinthhello_join_[username]%

Velocity

With HyacinthHello Velocity, you can have HyacinthHello's custom messages broadcasted across your entire network.

The Velocity plugin can just forward to the other servers, or take over all join, leave, and death messages across the proxy. The latter option is recommended.

If you wanted to sync player's custom messages across your proxy, you could use a single MySQL or Postgres database for all of your servers.

Requires Redis.

On your server:

proxy-mode: true
proxy-redis:
  address: 0.0.0.0 # Your redis address, this is likely fine
  port: 6379 # Your redis port, this is likely fine
  channel: hyacinthhello # Leave default, unless you have multiple proxies with HyacinthHello
  ssl: # Leave blank unless you know you have to change this
  pass: # Leave blank unless you know what to put here

On your proxy:

# Variables:
#   {p}   player name
#   {s}   server name
#   {m}   forwarded message
redis:
  address: 0.0.0.0 # Your redis address, this is likely fine
  port: 6379 # Your redis port, this is likely fine
  prefix: hyacinthhello # Leave default, unless you have multiple proxies with HyacinthHello
  ssl: # Leave blank unless you know you have to change this
  pass: # Leave blank unless you know what to put here

override-backends: true # Overrides default and custom messages. 
join-message: '<yellow>{p} joined {s}' # Allows setting custom formatting for join
leave-message: '<yellow>{p} left {s}' # Allows setting custom formatting for leave
death-message: '<yellow>{m}' # Just wraps over the message forwarded from backend servers

wrapper-left: '&e&o'
wrapper-right: ''

👥 Team & Contributors

ihateblueb
ihatebluebOwner

⚙️ Compatibility

Environment
🖥️ Server-side
Loaders
paperpurpurspigotvelocity
Minecraft Versions
1.201.20.11.20.21.20.31.20.41.20.51.20.61.21+11 more

🔗 Links

Modrinth Page