Leaderboard Format
In this file, you can define the look leaderboards will have:
Default leaderboard_format.yml
config:
# Format for the leaderboard
formats:
# Format for player name
name: "&e{name}"
# Format for damage
damage: "&c{damage}"
# Symbol to display next to each entry
symbol: "⚔"
# Complete format for each line
# Available variables:
# {symbol} - The configured symbol
# {position} - The player's position
# {name} - The player's name (formatted)
# {damage} - The damage dealt (formatted)
format: "{symbol} {position}. {name}: {damage}"
Available Placeholders
{name}
: How name of each player should look like, use any color you want{damage}
: How damage of each player should look like, use any color you want{symbol}
: Optional character to improve line styling.{position}
: Will show what position the player have
Last updated