▶️ ЗАБЕРИ СВОИ 8 ПОДАРКОВ 🎁 ПРИ СОЗДАНИИ СВОЕГО МАЙНКРАФТ СЕРВЕРА
Моды/VersionTinmoli
VersionTinmoli

VersionTinmoli

A lightweight Minecraft proxy/server plugin for customizing the version name displayed in the server list, with rich color and formatting support.

11
0

VersionTinmoli

Version: 1.0.2
Supported Platforms: Velocity 3.0+ | BungeeCord 1.16+ | Bukkit/Spigot/Paper 1.20.1+

A lightweight Minecraft proxy/server plugin for customizing the version name displayed in the server list, with rich color and formatting support.

中文文档 | English Documentation


Table of Contents


Features

  • Colored Version Names - Velocity supports MiniMessage format (RGB, gradients, ✨), BungeeCord/Bukkit support legacy color codes
  • Rich Formatting - Bold, italic, underline, strikethrough support
  • Hot Reload - Reload configuration with /vt reload command
  • Dynamic Modification - Instantly modify version name with /vt md <name> command
  • Simple Configuration - YAML configuration file
  • Lightweight - No performance impact
  • Auto Fallback - Compatible with older client versions
  • Multi-language - Supports English and Chinese

Supported Platforms

PlatformVersionJava VersionStatus
Velocity3.0+Java 21+Fully Supported
BungeeCord1.16+Java 17+Fully Supported
Bukkit/Spigot1.20.1-1.21.11Java 17+Requires newer version
Paper1.20.1-1.21.11Java 17+Fully Supported

Quick Start

Installation

  1. Download the JAR file for your platform from Releases
  2. Place the JAR file in your server's plugins/ directory
  3. Restart the server
  4. Edit the configuration file (auto-generated)
  5. Use /vt reload to reload the configuration

Configuration File Location

  • Velocity: plugins/versiontinmoli/config.yml
  • BungeeCord: plugins/VersionTinmoli/config.yml
  • Bukkit: plugins/VersionTinmoli/config.yml

Color Support

Velocity - MiniMessage Format

# Named colors
version_name: "<gold>Velocity</gold> <gray>1.8-1.21</gray>"

# RGB colors (1.16+)
version_name: "<#FF5555>Red <#55FF55>Green"

# Gradient effects
version_name: "<gradient:red:blue>✨ Server</gradient>"

# ✨ effects
version_name: "<✨>✨ Server</✨>"

# Style combinations
version_name: "<bold><gold>VIP</gold></bold> <gray>| <green>Online</green></gray>"

Available Colors: <red>, <gold>, <yellow>, <green>, <aqua>, <blue>, <light_purple>, <white>, <gray>, <dark_gray>, <black>

Available Styles: <bold>, <italic>, <underlined>, <strikethrough>


BungeeCord/Bukkit - Legacy Color Codes

# Basic colors
version_name: "&6BungeeCord &71.8-1.21"

# With formatting
version_name: "&l&6VIP Server&r &7| &a1.8-1.21"

# Multi-color combinations
version_name: "&cRed &6Gold &eYellow &aGreen"

Color Codes: &0-&9, &a-&f (black, dark blue, dark green, dark aqua, dark red, purple, gold, gray, dark gray, blue, green, aqua, red, pink, yellow, white)

Format Codes: &l (bold), &m (strikethrough), &n (underline), &o (italic), &r (reset)


Client Compatibility

Client VersionSupported Colors
1.16+Full RGB colors
1.7-1.1516 named colors
< 1.7Basic colors

Commands

CommandPermissionDescription
/vtversiontinmoli.adminShow plugin information
/vt reloadversiontinmoli.adminReload configuration file
/vt md <name>versiontinmoli.adminModify version name

Permission Notes: Velocity/BungeeCord require versiontinmoli.admin permission, Bukkit defaults to OP


Configuration

Basic Configuration

# VersionTinmoli Configuration File
# Customize the version name displayed in the server list

# Language setting (en_US or zh_CN)
language: "en_US"

# Version name configuration
version_name: "Velocity 1.8.x-1.21.11"

Language Settings

The plugin supports multiple languages. You can set the language in the configuration file:

  • en_US - English
  • zh_CN - Simplified Chinese

After modifying the language field, use /vt reload to reload the configuration and switch languages. All command messages and prompts will be displayed in the corresponding language.

Language File Customization

Language files are automatically copied to the external directory on first run:

  • Velocity: plugins/versiontinmoli/lang/
  • BungeeCord: plugins/VersionTinmoli/lang/
  • Bukkit: plugins/VersionTinmoli/lang/

You can edit these files to customize messages. The plugin will load from the external directory first, then fall back to the built-in files.

Configuration Examples

Regular Server

# Velocity
version_name: "<gold>Minecraft</gold> <gray>1.8-1.21</gray>"

# BungeeCord/Bukkit
version_name: "&6Minecraft &71.8-1.21"

VIP Server

# Velocity
version_name: "<bold><gradient:gold:yellow>VIP Server</gradient></bold>"

# BungeeCord/Bukkit
version_name: "&l&6VIP Server"

Minigames Server

# Velocity
version_name: "<✨>MiniGames</✨> <white>| <green>Online</green></white>"

# BungeeCord/Bukkit
version_name: "&cM&6i&en&ai&9G&ba&dm&5e&cs &f| &aOnline"

PVP Server

# Velocity
version_name: "<bold><red>PVP</red></bold> <gray>| <yellow>Fighting</yellow></gray>"

# BungeeCord/Bukkit
version_name: "&l&cPVP &r&7| &eFighting"

FAQ

Migrating from TOML to YAML

If you're upgrading from an older version (before v1.0.2), you need to migrate your configuration from TOML format to YAML format.

Automatic Migration (Recommended):

  1. Backup your config.toml file
  2. Delete the config.toml file
  3. Restart the server or run /vt reload
  4. The plugin will automatically create a new config.yml file
  5. Edit config.yml and set your custom version name

Manual Migration:

TOML format (old):

version_name = "My Server 1.20"

YAML format (new):

version_name: "My Server 1.20"

Main difference: Use colon : instead of equals sign =

Configuration Not Working

  1. Ensure the configuration file is in the correct location
  2. Check YAML syntax is correct
  3. Use /vt reload to reload configuration
  4. If still not working, restart the server

Colors Not Displaying or Showing as Text

Problem: RGB color codes display as text like Red</> Green</>

Cause: Using incorrect closing tags </>

Solution:

# Wrong
version_name: "<#FF5555>Red</> <#55FF55>Green</>"

# Correct
version_name: "<#FF5555>Red <#55FF55>Green"
version_name: "<color:#FF5555>Red</color> <color:#55FF55>Green</color>"

Other Color Issues:

  1. Velocity: Use MiniMessage format <gold>text</gold>
  2. BungeeCord/Bukkit: Use & or § color codes
  3. RGB colors require Minecraft 1.16+ client
  4. Check server logs for errors

Platform-Specific Requirements

  1. Velocity: Requires Velocity 3.0+ and Java 21+
  2. BungeeCord: Requires BungeeCord 1.16+ and Java 17+
  3. Bukkit: Requires Minecraft 1.20.1+ and Java 17+

License

This project is licensed under the MIT License.

Support

For issues or suggestions, please submit them on GitHub Issues.


Documentation Version: 1.0.2
Maintainer: Tinmoli

Совместимость

Minecraft: Java Edition

1.21.x1.20.x1.19.x1.18.x1.17.x1.16.x1.15.x1.14.x1.13.x1.12.x1.11.x1.10.x1.9.x1.8.x

Платформы

Поддерживаемые окружения

Сервер

Создатели

Детали

Лицензия:MIT
Опубликован:1 неделю назад
Обновлён:1 неделю назад
Главная