Sorting Feature

Introduction

Sorting Feature allows you to sort tablist entry.

How to use it

Most of Tablist Handler supports Sorting. It usually use field sorterto sort it. Just put placeholder that represent the order into the field. Example:

...
    sorter: '{team_color};{vault_eco_balance}'
    # this will sort by team color, and then the balance
...

Changing the sort order

You can use field order to make the order from high to low (DESCEND) or low to high (ASCEND).

Multiple Sorter with Different Order

You can have 2 or more sorter placeholder with different order

...
    sorter: '{team_color};!{vault_eco_balance}'
    # this will sort the team_color ASCENDly, and then vault_eco_balance DESCENDly
...

Last updated