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

BetterEnchantedVelocity

Powerful Velocity Proxy Plugin designed to enhance server management and player experience

20
1

BetterEnhancedVelocity

GitHub Release Modrinth Downloads License Velocity Kotlin

A Velocity proxy plugin for efficient network management. Provides configurable commands for player and server administration, with full vanish plugin support and multi-language messages.

Installation

  1. Download the latest JAR from GitHub Releases or Modrinth
  2. Drop it into your Velocity plugins/ folder
  3. Restart the proxy
  4. Edit plugins/betterenhancedvelocity/settings.yml to configure features and commands

Commands

CommandDescriptionPermission
/glistList all players across every server with a progress barbetterenhancedvelocity.commands.glist
/find <player>Show which server a player is onbetterenhancedvelocity.commands.find
/ping [player]Check your ping or another player'sbetterenhancedvelocity.commands.ping
/send <player> <server>Send a player to a serverbetterenhancedvelocity.commands.send
/alert <message>Broadcast a message to all playersbetterenhancedvelocity.commands.alert
/kickall <server|all>Kick all players from a server or the entire proxybetterenhancedvelocity.commands.kickall
/move <player|server:\<name\>|all> <dest>Move players to a destination serverbetterenhancedvelocity.commands.move
/bev reloadReload config and language filesbetterenhancedvelocity.admin

Action Permissions

PermissionDescription
betterenhancedvelocity.actions.seevanishedSee vanished players in commands
betterenhancedvelocity.actions.findvanishedSee vanished status in /find
betterenhancedvelocity.actions.kickall.bypassExempt from /kickall
betterenhancedvelocity.actions.move.allUse /move all
betterenhancedvelocity.actions.move.serverUse /move server:<name>
betterenhancedvelocity.actions.move.playerUse /move <player>

Configuration

All features can be individually enabled or disabled in settings.yml:

features:
  global_list:
    enabled: true   # set to false to disable /glist entirely
    command: glist
    aliases: [globallist, list, players]
  find:
    enabled: true
  send:
    enabled: true
  alert:
    enabled: true
  ping:
    enabled: true
  kickall:
    enabled: true
  move:
    enabled: true

Command names and aliases are configurable per feature.

Startup commands run automatically when the proxy initializes:

startup_commands:
  - "alert Proxy has started!"

Global List Server Groups

The /glist command supports grouping sub-servers under a single display entry, hiding servers from the list, and custom display names:

features:
  global_list:
    server:
      # This entry groups bw-1, bw-2, bw-3 and shows them as one "BedWars" row
      BedWars:
        displayname: "BedWars"
        sum:
          - "bw-1"
          - "bw-2"
          - "bw-3"
      # These are hidden from the list since they appear under BedWars above
      bw-1:
        hidden: true
      bw-2:
        hidden: true
      bw-3:
        hidden: true

displayname overrides the server name shown in the list. sum merges the player counts of the listed servers into this row. hidden: true removes a server from the output entirely.

Languages

Two languages are bundled: en_US and tr_TR. To switch, set default_language in settings.yml:

default_language: "tr_TR"

To add a custom language, copy plugins/betterenhancedvelocity/languages/en_US.yml to a new file (e.g. de_DE.yml), translate the values, then set default_language: "de_DE". Run /bev reload to apply without restarting.

All messages support MiniMessage formatting.

Vanish Integration

BetterEnhancedVelocity has a built-in vanish API. If you have a vanish plugin, implement the VanishHook interface and register it so vanished players are hidden correctly across all commands:

import dev.lenvx.betterenhancedvelocity.api.VanishHook
import dev.lenvx.betterenhancedvelocity.api.VanishManager
import java.util.UUID

class MyVanishHook : VanishHook {
    override fun isVanished(uuid: UUID): Boolean = MyVanishPlugin.isVanished(uuid)
    override fun vanish(uuid: UUID) = MyVanishPlugin.vanish(uuid)
    override fun unvanish(uuid: UUID) = MyVanishPlugin.unvanish(uuid)
}

// Register on plugin enable
VanishManager.register(MyVanishHook())

Without a registered hook, all players are treated as visible.

Requirements

  • Velocity 3.x
  • Java 17+

Building

./gradlew build

The plugin JAR will be in /bin/BetterEnhancedVelocity v<version>.jar.

Contributing

Pull requests are welcome. For bugs, open an issue on GitHub and include exact steps to reproduce, your Velocity version, and any relevant logs.

Credits

Original EnhancedVelocity plugin by Syrent.

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

Minecraft: Java Edition

1.21.x

Платформы

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

Сервер

Создатели

Детали

Лицензия:GPL-3.0-only
Опубликован:5 месяцев назад
Обновлён:3 недели назад
Главная