-
Notifications
You must be signed in to change notification settings - Fork 72
FAQ
Your server needs to meet the following requirements for the icons to show up:
- You need to run Minecraft 1.8 or above.
- Your server cannot run in offline mode (see #269).
This is intentional.
You can use the disableCustomTabListForSpectators option in config.yml to change that.
However, displaying the custom tab list to players in spectator mode causes some issues, such as fake players used for custom slots showing up in the teleport menu and other spectators being rendered differently.
For 1.7.x clients (and older) the size of the tab list configured in tab list configuration must match the size of the tab list configured in BungeeCord's config.yml.
-
Create a new file in the
tabListsfolder. A copy of thedefault.ymlor one of the examples from the wiki make a good starting point. While the name doesn't really matter, let's assume you called the file1.7.yml. -
Change the
showTooption of the1.7.ymltoshowTo: |- ${viewer client_version} == "1.7.5" or ${viewer client_version} == "1.7.10"
Note that a 1.7.x client identifies as either 1.7.5 or 1.7.10, so it is sufficient to check for those two versions.
-
Change the
priorityoption in the1.7.ymlto a number higher than the one indefault.yml. -
Edit the remaining options in
1.7.ymlto change the layout to fit your needs. Pay attention to the following details specific to 1.7 clients:- The
sizemust match the tab list size configured in BungeeCord'sconfig.yml. - There is no header or footer. You can ignore or remove those config options.
- There are no icons :(
- The
-
Create a player set containing only those players:
playerSets: same_server: ${player server} = ${viewer server}
-
Change the
playerSetoption such that the plugin uses thesame_serverplayer set when displaying playersplayerSet: same_server
Have a look at AdvancedTabOverlay for a Bukkit port of the plugin. It is still in development, but should work fine.