Tablist Handlers

Creating your own handler

handlers:
    <handlerName>:
        type: <handlerType>

Placeholder usage for your handler: {<handlerName>}

Example:

handlers:
    example:
        type: EXAMPLE_TYPE

then the placeholder usage is {example}

Handler Types

Text Type

This allows you to show text on your tablist line. Type name: TEXT Fields:

  • text Type: Text, List of Text, Text Frame, List Of Text Frame

  • skin (Optional) Type: Text of UUID, Text of Player Name, List of Text of UUID/PlayerName, List of Frame

  • ping (Optional) Type: Number, List Of Number, List of Frame

  • refreshTicks (Optional) Type: Number

Compound Type

This allows you to combine multiple handlers, and allowing them to have dynamic size. Type name: COMPOUND Fields:

  • overflowFormat (Optional) text when there is not enough space left to put this placeholder Type: Text, List of Text, Text Frame, List of Text Frame

  • header (Optional) the text shown before the list Type: Text,List of Text,TextFrame,List of Text Frame

  • hideEmpty (Optional, default true) hide the header when the content is empty? Type: Boolean, List of Boolean, List of Boolean Frame

  • items

    • <the items>

      • fixedSize size for the handler, -1 for dynamic size Type: Number

Player List Type

This allows you to show list of online players. Type name: PLAYER_LIST Fields:

  • text The text for every player entry

  • skin The skin for every entry

  • ping (Optional) The ping for every entry

  • refreshTicks (Optional) interval time to refresh the entry

  • condition (Optional) Filter the entry using script condition Type: JavaScript,List of JavaScript , List of Frame

  • sort (Optional) Sort the entry (CASE SENSITIVE ORDER) Type: Text , List of Text , List of Frame

  • order (Optional, default ASCEND) Type: ASCEND or DESCEND

  • hideEmpty (Optional) Hide header when its empty

  • header Text shown before the entry

  • overflowFormat Text shown at the bottom when it reached the limit

  • grouping Prevent the entry to be duplicated in same context

    • groupName Type: Text, List of Text, Text Frame, List of Text Frame

    • priority Type: Number, List Of Number, List of Frame

Field Type Explanation

Text

A text. Example: "this is a text"

Number

A number. Example: 2020

Boolean

A toggle switch between true or false . Example: true

Frame

A frame containing delay for this value. Example:

List

A list. Example:

Text Frame

A frame that supports skin and ping. Example:

Last updated

Was this helpful?