📑Tablist

In Minecraft, the "tablist" refers to the list of players currently present in a multiplayer game session. It is typically accessed by pressing the Tab key on your keyboard. The tablist displays each player's username, allowing you to see who is online. In some servers, additional information might be provided alongside player names, such as their in-game rank, health, or score, depending on the server's custom configurations.

Settings

Find document in MongoDB:

db.getCollection('settings').find({ "name" : "tablist" })

Default settings:

{
    "_id" : ObjectId("65d0020732b02e75801baa1a"),
    "name" : "tablist",
    "config" : {
        "delay" : 1500,
        "animation" : true,
        "tabBanner" : "",
        "header" : [ 
            " \n§7•§8● %prefixWithoutSymbol% §8●§7•\n%mottoWithColor%\n\n §7Player §8➜ %col1%%online_players%§8/%col1%100\n §8► §7Connected to §8● %col1%%server% §8◄ \n"
        ],
        "footer" : [ 
            " \n §7Discord §8» %col1%https://discord.fedustria.net/ \n §7Neues §8➜ %col2%/level\n", 
            " \n §7Discord §8» %col2%https://discord.fedustria.net/ \n §7Neues §8➜ %col1%/level\n", 
            " \n §7Discord §8» %col1%https://discord.fedustria.net/ \n §7Neues §8➜ %col2%/level\n", 
            " \n §7Discord §8» %col2%https://discord.fedustria.net/ \n §7Neues §8➜ %col1%/level\n"
        ]
    }
}

Customizing Tablist Animation

You have the flexibility to create a dynamic and animated tablist in your Minecraft server settings. By adding multiple lines within the header and footer arrays, you can achieve an animated effect that cycles through each line. The animation makes your tablist more engaging and can be used to display different pieces of information or creative designs over time.

The speed at which the animation cycles through the lines is controlled by the delay setting, which is defined in milliseconds. A lower delay value will result in a faster animation, while a higher value will slow it down. For example, with a delay of 1500, there will be a 1.5-second pause before the tablist updates to display the next line in the sequence.

To animate your tablist, simply add additional lines to the header and footer sections like so:

"header" : [
  "First line of animation\n",
  "Second line of animation\n"
],
"footer" : [
  "First line of animation\n",
  "Second line of animation\n"
]

Remember, the animation loops through each line in the order they are listed, creating a seamless effect. This adds a lively element to your server, making the player experience more interactive and visually appealing.

Available placeholders:

  • %prefixWithoutSymbol% - Shows the server name

  • %mottoWithColor% - Shows the motto with color

  • %online_players% - Displays all online players

  • %server% - Displays the current server of the player

  • %col1% - First color of player's theme

  • %col2% - Second color of player's theme

Last updated