Skip to content

Configuration

EmilDeuOfficial edited this page Jun 23, 2026 · 1 revision

Configuration

Config file location: plugins/TabPlayerHider/config.yml

The file is generated automatically on first start. After editing it manually, run /tph reload or restart the server to apply changes.


Default Config

enabled: true
hidden-players:
  - "BotName1"
  - "BotName2"

enabled

Type: boolean
Default: true

Controls whether tab-list hiding is active globally.

  • true — all players in hidden-players are hidden from the tab list
  • false — hiding is suspended; all players appear in the tab list normally

You can toggle this at runtime with /tph on and /tph off — the value is written back to config.yml automatically.


hidden-players

Type: list of strings
Default: ["BotName1", "BotName2"]

The list of player names to hide from the tab list. Names are case-sensitive and must match the player's exact in-game name.

hidden-players:
  - "CoolBot"
  - "AnotherBot"
  - "Steve"

You can also manage this list with commands:

  • Add: /tph hide <name> — appends the name and saves config
  • Remove: /tph show <name> — removes the name and saves config

Both commands take effect immediately for all online players without a restart.

Clone this wiki locally