Leaderboard Name Beautifier

A tool you can use to make the leaderboard names in ajLeaderboards more human-readable or, well, more beautiful

Tutorial

Here's a template from which you can make your own beautifiers

# ...
  equals:
    # This replacer replaces the leaderboard name "statistic_walk_one_cm" with "Walk distance in cm"
    walk:
      matcher: "statistic_walk_one_cm"
      replacement: "Walk distance in cm"
  contains:
    # This replacer removes "player_" if the given leaderboard name contains it
    player:
      matcher: "player_"
      replacement: ""

Extras

You can use PlaceholderAPI placeholders in replacement values, which will be parsed from the perspective of the menu viewer

Last updated