This plugin allows you to customize the scoreboard text and layout via a configuration file.
Usage
1. config.json: Located in the plugin data folder. Here you can edit the labels for kills, deaths, online count, etc.
- Use `%d` for numbers (kills, deaths, online count).
- Use `%s` for strings (player name).
- Use `%animate_youranimname%` for animation.
Example config.json
{
"scoreboardTitle": "SERVER NAME",
"height": 300,
"lines": [
{
"text": "",
"color": "#ffffff"
},
{
"text": "Name: %player_name%",
"color": "#ffffff"
},
{
"text": "KILL: %kills%",
"color": "#ffffff"
},
{
"text": "DEAD: %deaths%",
"color": "#ffffff"
},
{
"text": "ONLINE: %online_player%",
"color": "#ffffff"
},
{
"text": "SERVER: KitPvP",
"color": "#ffffff"
},
{
"text": "discord.gg/bgpKGuQQfc",
"color": "#05a3ff"
},
{
"text": "",
"color": "#ffffff"
}
]
}
Example animations.json
Example animations.json
{
"animations": {
"servername": {
"color": "#e8b923",
"frames": [
"T",
"Ta",
"Tal",
"Tale"
]
},
"name": {
"color": "#ffffff",
"frames": [
"N",
"NA",
"NAM",
"NAME"
]
}
}
}

