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
Tab Player Highlighter
ModMIT

Tab Player Highlighter

Модификация для выделения определённых игроков в табе по UUID. Modification to highlight certain players in the table by UUID.

10.1K
Downloads
14
Followers
3 months ago
Updated
📦
9
Versions
socialutilityfabric
Download Latestv2.2.2-1.21.11View on Modrinth

📖About Tab Player Highlighter

RU

Важно!

  • Для работы Tab Player Highlighter необходима библиотека Cloth Config API.
  • Рекомендуется использовать Notepad++ для редактирования JSON конфигурации.
  • UUID игрока можно узнать на NameMC.

Что делает мод?

Spoiler

TPH — модификация, позволяющая выделить в табе игры определенных игроков по UUID.

Выглядит это следующим образом:

пример работы мода

Настройка конфига

Spoiler

Файл конфигурации находится по пути:

.minecraft\config\tab_player_highlighter.json

И выглядит следующим образом:

{
  "onlineMod": false,
  "API_URL": "localhost:3000/get_roles",
  "playersPrefixes": {
  }
}

На место UUID в конфиге мода Tab Player Highlighter вы должны указать необходимые вам идентификаторы игроков и задать им роли. Вы можете указать несколько UUID, чтобы выделить нескольких пользователей в игре. Приведу пример, как это должно выглядеть в вашем файле конфигурации:

{
  "onlineMod": false,
  "API_URL": "localhost:3000/get_roles",
  "playersPrefixes": {
    "uuid1": "§a[Admin]",
    "uuid2": "§a[Moderator]",
    "uuid3": "§a[Helper]",
    ...
    "uuid100": "§a[Cheater]"
  }
}

Также, если включить onlineMod, то при заходе на сервер, префиксы игроков будут браться с API_URL, а playersPrefixes будет игнорироваться.
Чтобы онлайн-режим работал правильно ответ от API_URL должен быть в JSON и иметь такой вид:

{
  "players": {
    "6a640b67-87f0-456a-8f4d-a65aeb55f4f4": "[Moderator]",
    "53e45cf5-c017-427a-9e67-7b6f00d47219": "§a[Admin]"
  }
}

Соблюдайте правильную структуру текстового файла и ответа от API, чтобы модификация работала корректно.

EN

Important!

  • To use Tab Player Highlighter, you need the Cloth Config API.
  • We recommend using Notepad++ for editing JSON configuration files.
  • You can find player UUIDs on NameMC.

What does the mod do?

Spoiler

TPH is a modification that allows highlighting specific players by UUID in the game's tab list.
Here's how it looks:

Example

Config Setup

Spoiler

The configuration file is located at:

.minecraft\config\tab_player_highlighter.json

And looks like this:

{
  "onlineMod": false,
  "API_URL": "localhost:3000/get_roles",
  "playersPrefixes": {
  }
}

In the Tab Player Highlighter mod config, you need to replace the UUIDs with the player IDs you want to highlight and assign them roles. You can specify multiple UUIDs to highlight multiple players in the game. Here's an example of how your configuration file should look:

{
  "onlineMod": false,
  "API_URL": "localhost:3000/get_roles",
  "playersPrefixes": {
    "uuid1": "§a[Admin]",
    "uuid2": "§a[Moderator]",
    "uuid3": "§a[Helper]",
    ...
    "uuid100": "§a[Cheater]"
  }
}

Also, if you enable onlineMod, when joining a server, player prefixes will be fetched from API_URL, and playersPrefixes will be ignored.
For online mode to work correctly, the response from API_URL must be in JSON format and look like this:
text

{
  "players": {
    "6a640b67-87f0-456a-8f4d-a65aeb55f4f4": "[Moderator]",
    "53e45cf5-c017-427a-9e67-7b6f00d47219": "§a[Admin]"
  }
}

Make sure to maintain the correct file structure and API response format for the modification to work properly.

👥 Team & Contributors

R4mBLe_
R4mBLe_
Разработчик мода
DeL1TMe
DeL1TMeOwner

⚙️ Compatibility

Environment
💻 Client-side
Loaders
fabric
Minecraft Versions
1.21.11

🔗 Links

Modrinth Page