Skip to content

TabList

DarknessTime-king5442 edited this page Sep 15, 2021 · 10 revisions

TabList supports:

  1. Colors ("&<color>", "#HexColor", Rainbow color > "&u", Gradient -> "!#HexColor1TexT!#HexColor2")
  • 1.1 "#HexColor" and Gradient -> "!#HexColor1TexT!#HexColor2" only for 1.16+
  1. Placeholders from PlaceholderAPI

How can I disable TabList?

  • TabList can be fully disabled in file “TabList.yml” by set “Enabled” to “false”.
Options:
  # Enable tablist
  Enabled: true

Per World TabList

Per World TabList see players in specified world, ignoring global TabList.

PerWorldTabList:
  world:
    Header:
    - '&2TabList in world %world%'
    - '&6Health: &a%hp%$   &6Food: &a%food%'
    - '&7--------------------------------'
    Footer:
    - '&7--------------------------------'
    - '&6Online: &a%online%$   &6Rank: &a%group%'

Per Player TabList

Per Player TabList see specified player, ignoring Per World and global TabList.

PerPlayerTabList:
  Straikerina:
    Header:
    - '&4Welcome back %playername% !'
    - '&7--------------------------------'
    Footer:
    - '&7--------------------------------'
    - '&6Money: &a%money%$   &6Rank: &a%group%'

Global TabList

This TabList see all players.

Header:
- '&bWelcome back &a%playername%&b!'
- '&bTPS: &a%tps%   &bFree Ram: &a%ram_free_percentage%'
- '&bMoney: &9%money%$   &bPing: &9%ping%'
- '&7--------------------------------'
Footer:
- '&7--------------------------------'
- '&bTime: &a%time%   &bOnline: &a%online% &0/ &a%max_players%'

FAQ (frequently asked questions)

Tablist "Header", "Footer" and "NameTag"

  1. How can i disable modifing of header in TabList
  • You can disable modifing of header in TabList in file “TabList.yml” by set “Header” to “false”
  1. How can i disable modifing of footer in TabList
  • You can disable modifing of footer in TabList in file “TabList.yml” by set “Footer” to “false”
  1. How can I disable modifing of Nametag
  • You can disable this feature in file “TabList.yml” by set “NameTags” to “false”
  Modify:
    # Modify header in tablist
    Header: true 
    # Modify footer in tablist
    Footer: true 
    # Modify text above player
    NameTags: true
    
    # Modify name of player in tablist
    TabListName: true

Tablist update time

  1. How can i change TabList update time?
  • TabList update (reflesh) time can be edited in file “TabList.yml”, section “RerfeshTick”.
  1. How can i change Nametag update time?
  • Nametag update (reflesh) time can be edited in file “TabList.yml”, section “NameTag”.
  RefleshTick:
    # Time to update tablist header, footer & playername
    # 20 ticks = 1s
    Tablist: '20'

    # Time to update text above player
    # 20 ticks = 1s
    NameTag: '20'
```yml
### Tablist sorting
1. How can I disable sorting of TabList

* You can disable this feature in file “TabList.yml” by set “Sorting” to “false”
```yml
  Sorting: true
  Sorting-Groups:
  - "owner"
  - "admin"
  - "helper"
  - "builder"
  - "vip"
  - "default"

Clone this wiki locally