-
Notifications
You must be signed in to change notification settings - Fork 0
TAB Integration
Complete guide to integrating GlowPlayersPro with the TAB plugin.
GlowPlayersPro can work together with the TAB plugin to control player glow colors. Since only one plugin can manage scoreboard teams at a time, both plugins need to be configured correctly.
- Player glow is controlled by scoreboard teams
- Only one plugin can manage these teams simultaneously
- When TAB is installed, it takes over team management
- GlowPlayersPro needs to be configured to avoid conflicts
- GlowPlayersPro installed and working
- TAB installed and configured
- PlaceholderAPI installed
In GlowPlayersPro's config.yml, change use-teams to false:
settings:
use-teams: falseThis makes the plugin stop managing scoreboard teams and lets TAB apply the color via the placeholder.
If you don't have PlaceholderAPI installed yet:
- Download PlaceholderAPI
- Place the JAR file in the
plugins/folder - Restart the server
GlowPlayersPro will automatically register its expansion.
In TAB's groups.yml, add the placeholder %glowplayerspro_color% at the very end of the player's tagprefix:
_DEFAULT_:
tagprefix: "%luckperms-prefix%%glowplayerspro_color%"
customtabname: "%glowplayerspro_color%%player%" # optional: colors the tablist name-
tagprefix(nametag above the head) is required — its last color becomes the glow color -
tabprefix(tablist) has no effect on the glow; don't put the placeholder there -
customtabnameis optional and only colors the name shown in the tablist
The %glowplayerspro_color% must be the last color code in the prefix. This is because Minecraft uses the last color found to determine the glow color.
# CORRECT - placeholder at the end
tagprefix: "%luckperms-prefix%%glowplayerspro_color%"
# WRONG - placeholder at the beginning
tagprefix: "%glowplayerspro_color%%luckperms-prefix%"If you have different groups in TAB (e.g., Owner, Admin, Player), each one needs the placeholder added to the end of its tagprefix:
_DEFAULT_:
tagprefix: "%luckperms-prefix%%glowplayerspro_color%"
Owner:
tagprefix: "&c[Owner] %glowplayerspro_color%"
suffix: "&f"
Admin:
tagprefix: "&4[Admin] %glowplayerspro_color%"
suffix: "&f"
Player:
tagprefix: "&7[Player] %glowplayerspro_color%"
suffix: "&f"Important: If a group defines its own tagprefix, it overrides _DEFAULT_. You must append %glowplayerspro_color% at the end of each of those groups' tagprefix too, or the glow will be locked to whatever color that prefix ends with.
- Player uses
/glow redto enable glow - GlowPlayersPro saves the color "RED" in player data
- The placeholder
%glowplayerspro_color%returns§c(red color code) - TAB applies this color code to the player's
tagprefix - Minecraft uses the last color in the prefix to color the glow
When glow is enabled, the color is also applied to the player's name above their head. This is natural Minecraft scoreboard team behavior, not a bug.
settings:
use-teams: false_DEFAULT_:
tagprefix: "%luckperms-prefix%%glowplayerspro_color%"
customtabname: "%glowplayerspro_color%%player%"
tabprefix: "%luckperms-prefix%"- Check that
use-teams: falseis set in GlowPlayersPro - Confirm PlaceholderAPI is installed
- Verify
%glowplayerspro_color%is at the end oftagprefix
- Check that the placeholder is the last element in
tagprefix - Confirm there are no other color codes after the placeholder
- Test with a group without a prefix to isolate the issue
- Use
tabprefixfor the prefix color in tablist - Use
customtabnameto color the name in tablist -
tagprefixonly controls the name above head and glow
- Check that PlaceholderAPI is installed and enabled
- Use
/papi parse <player> %glowplayerspro_color%to test - Restart the server after installing PlaceholderAPI
- Glow always uses the last color in the
tagprefix - If you disable PlaceholderAPI, glow won't work with TAB
- Neon effect also works with TAB, showing the current cycle color
- Players can change the color anytime using
/glow <color>