Back to mods
WelcomeTale project artwork

CurseForge · Hytale mod

WelcomeTale

A Hytale server plugin that disables the default join/leave message broadcast and displays custom welcome messages when players join/leave your server.

Choose a version Pick your version below, then grab the matching file.

Quick answer

Which WelcomeTale release should I use?

Updated 6 months ago
Latest stable file WelcomeTale-1.3.0.jar
Game version Not listed
Mod system Built-in Hytale mod system

WelcomeTale-1.3.0.jar targets Hytale. Do not install it as a separate client mod. Enable it on the world host—the local server in singleplayer or the dedicated server in multiplayer. No required dependencies listed for this file.

Where it goes

Where should WelcomeTale be installed in Hytale?

Do not install it as a separate client mod. Enable it on the world host—the local server in singleplayer or the dedicated server in multiplayer.

Separate client mod Not supported
World host / dedicated server Required
Mod system for this release Built-in Hytale mod system
Required install it here Optional supported, not mandatory Not supported do not install here Source doesn’t say do not assume

Put Hytale mods on the world host or dedicated server. Singleplayer runs a local server too; Hytale does not use separate client mods.

What else does WelcomeTale-1.3.0.jar need?

WelcomeTale-1.3.0.jar. Change the file and its required mods may change too.

No required dependencies listed for this file

This file does not list any required mods. Do not add a library just because a different file uses it.

This file does not list any required or optional project dependencies. Check the creator notes before changing an existing world.

Before you install it

Add WelcomeTale without breaking your instance.

Built for WelcomeTale-1.3.0.jar. Pick another file and the loader, install side or required mods may change.

  1. 01

    Stick to this file

    Use WelcomeTale-1.3.0.jar. It targets Hytale; another release may target a different game build or dependency set.

  2. 02

    Bring the mods it needs

    This file does not list any required mods. Do not add a library just because a different file uses it.

  3. 03

    Enable it on the world host

    Do not install it as a separate client mod. Enable it on the world host—the local server in singleplayer or the dedicated server in multiplayer.

  4. 04

    Pick the file you checked

    Use the “Get this file” button beside WelcomeTale-1.3.0.jar. It opens that exact file at the source.

About this project

What does WelcomeTale add?

WelcomeTale

A Hytale server plugin that disables the default join/leave message broadcast and displays custom welcome messages when players join/leave your server.

alt text

alt text

alt text

Description

WelcomeTale is a plugin for Hytale that enhances the player experience with a comprehensive message system:

  • Server-wide join announcements when someone joins (customizable join message broadcasted to all players)
  • Private welcome messages sent directly to the joining player
  • Server-wide leave announcements when someone leaves (customizable leave message broadcasted to all players)

You can personalize all message formats with colors, multiple lines, and control whether default join messages are displayed.

GitHub Repository

Where to Download

You can download WelcomeTale from multiple platforms:

📢 Want us to publish on another platform? Let us know which one you'd like to see!

Features

  • 💬 Triple message system - Complete control over player connection messages:
    • Join broadcast (JoinMessage) - Announce to all players when someone joins
    • Private welcome (WelcomePlayerMessage) - Personal welcome message sent only to the joining player
    • Leave broadcast (LeaveMessage) - Announce to all players when someone leaves
  • 🎨 Color & formatting support - Use Minecraft color codes (&) for colorful, styled messages
    • 16 color options (black, blue, green, aqua, red, purple, gold, gray, etc.)
    • Text formatting: bold (&l), italic (&o), reset (&r)
  • 🔗 Clickable links - Automatically detects and converts HTTP/HTTPS URLs into clickable links
    • Links are displayed in cyan color and open in browser when clicked
    • Supports complex URLs with paths, queries, and parameters
  • 📝 Multi-line message support - Create beautiful message banners with multiple lines
  • 👤 Player name placeholder - Use {player} to dynamically insert the joining player's name
  • 🔕 Optional join message control - Disable Hytale's default join messages for full control
  • 🚪 Optional leave message patch - Disable Hytale's default "player left world" messages using an early plugin transformer
  • 🔄 Hot-reload configuration - Update settings without restarting the server using /welcometale
  • ⚙️ Easy JSON configuration - Simple, human-readable configuration file
  • 🛡️ Permission system - Control who can reload the configuration

⚠️ Note about default leave messages: Unlike join messages, Hytale does not provide a native way to disable default "player left world" messages through the plugin API. To disable them, you can use the /welcometalepatch command to install the early plugin patch automatically, or read leaveWorldMessagePatch.md for detailed instructions, manual installation, and safety information.


For Server Administrators

Installation

  1. Download the latest release from the Releases page
  2. Place the WelcomeTale-x.x.x.jar file in your Hytale server's mods folder
  3. Start your server
  4. The plugin will automatically create a folder at mods/com.rmaafs_WelcomeTale

Configuration

First Time Setup

When you first run the plugin, it will generate a config.example.json file in the mods/com.rmaafs_WelcomeTale directory.

Important: You must rename config.example.json to config.json to use your own configuration.

⚠️ Upgrading from an older version? Check the config.example.json file inside your server's mods/com.rmaafs_WelcomeTale folder to use the new configuration format.

Configuration Options

The config.json file contains the following options:

{
  "DisableDefaultJoinMessage": true,
  "JoinMessage": ["", "&3&l > &3{player} &b joined", ""],
  "LeaveMessage": ["", "&4&l > &4{player} &cleft", ""],
  "WelcomePlayerMessage": [
    "",
    "&6&l=====================================",
    "&e&lWelcome to Our Server!",
    "&6&l=====================================",
    "",
    "&7We're &ethrilled &7to have you here, &b{player}&7!",
    "&7Get ready for an &e&lamazing adventure &r&7ahead.",
    "",
    "&6&l> &6Join our community:",
    "&7  - Website: &ehttps://rmaafs.com",
    "&7  - GitHub: &ehttps://github.com/rmaafs/WelcomeTale",
    "",
    "&6Enjoy your stay and have fun! :)",
    ""
  ],
  "MessageReloaded": "&aConfiguration reloaded successfully!",
  "NoPermission": "&cYou don't have permission to use this command!",
  "CheckForUpdates": true
}

Configuration Fields:

  • JoinMessage: Server-wide broadcast message sent to all players when someone joins

    • Use {player} as a placeholder for the joining player's name
    • Supports color codes with & (see Color Codes section below)
    • Set to empty array [] to disable server broadcasts
    • Example: ["&3&l > &3{player} &b joined"]
  • LeaveMessage: Server-wide broadcast message sent to all players when someone leaves

    • Use {player} as a placeholder for the leaving player's name
    • Supports color codes with & (see Color Codes section below)
    • Set to empty array [] to disable leave broadcasts
    • Example: ["&3&l < &3{player} &c left"]
  • WelcomePlayerMessage: Private welcome message sent only to the joining player

    • Use {player} as a placeholder for the joining player's name
    • Perfect for server rules, links, or personalized greetings
    • Set to empty array [] to disable private welcome messages
    • Example: ["&7Welcome &a{player} &7to the server!"]
  • DisableDefaultJoinMessage: Set to true to disable the default Hytale join message. This gives you full control over join notifications

  • MessageReloaded: Message displayed when configuration is successfully reloaded

  • NoPermission: Message displayed when a player lacks permission to execute the command

  • CheckForUpdates: Set to true to enable automatic update checking. When enabled:

    • The plugin checks for new versions on GitHub when the server starts
    • Users with the welcometale.reload permission receive an in-game notification when joining if a new version is available
    • Set to false to disable all update checks and notifications
    • Default: true

Color Codes

You can customize your messages with colors using the & symbol followed by a color code:

Color Codes:

  • &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:

  • &l - Bold
  • &o - Italic
  • &r - Reset (removes all formatting)

Example:

"WelcomePlayerMessage": ["&7Welcome &a&l{player}&r &7to our &b&oawesome&r &7server!"]

This will display: "Welcome {player} to our awesome server!" with appropriate colors.

Multi-Line Messages

You can create multi-line messages by using an array format for both JoinMessage and WelcomePlayerMessage:

"WelcomePlayerMessage": [
  "&7============================",
  "&a&lWelcome {player}!",
  "&7Thank you for joining",
  "&eHave fun playing!",
  "&7============================"
]

Each line will be displayed separately, creating a beautiful message banner.

Message Behavior

When a player joins the server:

  1. JoinMessage is broadcasted to all players on the server (if not empty)
  2. WelcomePlayerMessage is sent privately to the joining player (if not empty)

When a player leaves the server:

  1. LeaveMessage is broadcasted to all players on the server (if not empty)

If any message field is an empty array [] or contains only whitespace, that message will not be sent

Reloading Configuration

After modifying the config.json file, you can reload the configuration without restarting the server:

In-game: Run the command /welcometale

Console: Execute welcometale

This will reload all configuration changes immediately.

Commands

Command Description Permission
/welcometale Reloads the plugin configuration welcometale.reload
/welcometalepatch Installs the early plugin patch for leave messages welcometale.admin

⚠️ Important: To disable the default "player left world" message from Hytale, run /welcometalepatch to install the early plugin that disables this message. A server restart will be required after installation.

Note: Only users with the welcometale.reload permission can execute this command. By default, server operators have this permission.

Update Notifications: Users with the welcometale.reload permission will receive an in-game notification when they join the server if a new version of the plugin is available. To disable these notifications, set CheckForUpdates to false in the config.json file.


🌟 Show Your Support

If you find this plugin useful, please consider:

  • Star this repository to show your support and help others discover it!
  • 👀 Follow @rmaafs on GitHub to stay updated on future Hytale plugins and projects
  • Buy me a coffee on PayPal to support continued development

🎨 Need a Custom Plugin?

I'm available for custom plugin development! If you need a specific plugin tailored to your server's needs or want a private, custom solution, feel free to reach out. Let's bring your ideas to life!


License

This project is provided as-is for use with Hytale servers.

Project description from CurseForge.

Recent files

WelcomeTale releases and Hytale builds

4 of 4 releases match

Looking for an older file? The official CurseForge project page is in Resources.