-
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.
For TAB to properly detect player as a bedrock player, floodgate and TAB must be installed on the same server instance and if TAB is on bukkit and floodgate is on both bungeecord and bukkit, make sure they are connected. To make sure floodgate is configured correctly, set debug: true
in TAB config and check console output on join/reload. It should say Floodgate returned bedrock status TRUE for player <player>
. If it says FALSE
for an actual bedrock player, you didn't connect floodgate properly.
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 most likely 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.
- Disabling Yellow Number for bedrock players due to many issues with the feature on bedrock.
These are the only 3 known changes that are required on TAB side.
If you configured Geyser to prefix bedrock player names with .
, it will mess up config loading, because .
is used to split section path. This means that using /tab player <playername containing .> ...
will not work.
There are 3 solutions available:
- Use player UUID if commands are executed via another plugin (
/tab player <uuid> ...
). - Use
playeruuid
type, which accepts player name and saves the online player's UUID (/tab playeruuid <player name> ...
). - Use a different username prefix than
.
.
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 makes vanish plugins unable to remove players on other servers from tablist, vanish check will make TAB remove vanished players.
- Potentiall hide vanished players from Layout.
Permission tab.seevanished
allows players to:
- See vanished players in Global playerlist.
- Makes Aligned tabsuffix count for vanished players when applying spaces for alignment.
- See vanished players in Layout.
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