Displaying tablist only for specific world - montlikadani/TabList GitHub Wiki

It is possible to display the tablist header and footer in different worlds with separate texts. This requires the use of the per-world.

Example

per-world:
  world2:
    header: "%anim:perWorld%"
    footer: "&6World:&7 %world%"

In this example, the header and footer string will appear in the world2 world, of course if the player is teleported to that world or is already there.

It is possible to set multiple worlds so that the header and footer are the same for different worlds.

Example

per-world:
  world_the_end, world1:
    header: "&3This is a per world plugin %anim:tablist%&3."
    footer:
    - "&6World:&7 %world%"

In this example, you can see that there is a world named world_the_end and a world1 that will only display the header and footer in these. You can enter more than one world name, just use , as a separator.

It is possible to set a header and footer by player name so that it will only be visible to the specified player.

Example

per-world:
  world3:
    header: "%anim:perWorld%"
    footer: "&6World:&7 %world%"

    per-player:
      playerName:
        header: "&3This is a per player plugin %anim:tablist%&3."
        footer:
        - "&6World:&7 %world%"
        - "&aPlayer:&8 %player%"

In this example, in the world world3, which has a player named playerName, will get the set of header and footer.

Last but not least, there is an option to set the header and footer according to different groups, which can only be seen by the specified groups. For this option to work, you need Vault as a permission provider.

Example

per-world:
  world4:
    per-group:
      admin:
        header: "&3This is a per group plugin %anim:tablist%&3."
        footer:
        - "&6World:&7 %world%"
        - "&aGroup:&8 %vault_rank%"

The result will be that in the world4 world, all members of the admin group will see the specified header and footer.