-
Notifications
You must be signed in to change notification settings - Fork 243
Additional information
This is a collection of random information about the plugin not necessarily limited to a single feature or function.
It is job of plugin allowing bedrock clients to connect (probably Geyser) to correctly translate all packets. If you are experiencing an issue on bedrock but not java, it is not an issue in TAB code.
Currently, TAB does check for bedrock clients for:
- Displaying scoreboard numbers as 1-15 instead of all 0 even if it's set to all 0, because lines would not be ordered correctly.
- Disabling Layout for bedrock players.
These are the only 2 known changes that are required on TAB side. If you are experiencing an issue on bedrock only, before requesting a fix, make sure it's not a Geyser bug (such as #3323).
For TAB to properly detect player as a bedrock player, floodgate and TAB must be installed on the same server instance (if TAB is on bukkit and floodgate is on both bungeecord and bukkit, make sure they are connected).
Although TAB does not manage player vanishing in any way, it checks for vanish status for features to be properly compatible. At the moment, vanishing detection is used for:
-
%vanished%
placeholder (used for internal functionality, but can be used to display vanish status if one wants to) -
%online%
,%serveronline%
,%worldonline%
and%staffonline
will not count vanished players - Aligned tabsuffix uses it to make sure it doesn't add extra spaces due to vanished players people cannot see (unless player can see vanished players, see below)
- Global playerlist takes over the tablist, causing vanish plugins to fail to remove player from tablist, vanish check will make TAB remove vanished players
- Vanished players do not appear in Layout (unless configured to show them)
Permission tab.seevanished
allows players to:
- See vanished players in Global playerlist.
- Makes Aligned tabsuffix count for vanished players when applying spaces for alignment.
At the moment, it does not allow players to see vanished players in Layout. This will be added in the future.
For a player to be detected, at least one condition must be met:
- When TAB is installed on BungeeCord, PremiumVanish is installed as well and PV says player is vanished, player is considered vanished.
- Player has to have
vanished
metadata flag set totrue
. Most, if not all vanish plugins do this, including, but not limited to CMI, Essentials, SuperVanish, PremiumVanish and probably more. If TAB is installed on BungeeCord, Bridge must be installed on backend servers to forward vanish status to the proxy.
In order to not slow down the server, TAB loads players asynchronously on join. As a casual user this does not impact you, but there are some cases where you'll feel it:
- Players will not be accessible in the API during PlayerJoinEvent
-
TAB's PlaceholderAPI expansion will not be accessible during join process, such as when trying to use it in plugins editing join messages (the exception is
replace_
placeholder, which doesn't directly use any TAB code).
There's a well known BungeeCord bug that kicks players if a duplicate team or objective is registered. This message also shows the name of the objective/team. Before reporting this, make sure it actually comes from TAB.
TAB's objective and team naming:
- Objectives ("Objective ... already exists in this scoreboard")
-
TAB-BelowName
for Belowname -
TAB-Scoreboard
for Scoreboard -
TAB-YellowNumber
for Yellow Number
-
- Teams ("Team ... already exists in this scoreboard")
- For sidebar scoreboard:
TAB-SB-TM-x
wherex
is a number from 1 to 15+ (for each line) - For players: This is more complicated to use the 16 character limit to the max and heavily depends on configuration. If you are sorting by player names, part of player name will be there. The most reliable way is the team name (almost) always ending with
A
(orB
,C
etc if you tried to sort several players into the same slot).
- For sidebar scoreboard:
- Why TAB?
- Installation
- Commands & Permissions
- Frequently Asked Questions
- Compatibility
- How to assign players into groups
- Known issues
- TAB-Bridge plugin
- Belowname
- Bossbar
- Global playerlist
- Header/Footer
- Layout
- Nametags
- Per world playerlist
- Ping spoof
- Playerlist objective
- RedisBungee support
- Scoreboard
- Sorting in tablist
- Spectator fix
- Tablist name formatting
- Animations
- Conditional placeholders
- Error logging
- MySQL
- Placeholder output replacements
- Placeholders
- RGB/font usage
- Client-sided mechanics
- Quick PlaceholderAPI startup guide
- How to setup compatibility with glow plugins
- How to display name from nickname plugins
- How to configure weights in LuckPerms
- How to save config in UTF-8 encoding
- Mini guides collection
- Additional information
- Optimizing plugin's CPU usage
- Developer API