skript-scoreboards skript-scoreboards is an addon that allows you to create and manage packet-based scoreboards easily.
Features
Packet-based scoreboards
Per player scoreboards
Scoreboards with shared viewers
No character limit on lines
Support for custom line scores (Minecraft 1.20.3+)
Documentation
Usage/Examples Global Scoreboards
Code (AppleScript):
on load:
set{-global
-scoreboard
}to a
new scoreboard
set title
of{-global
-scoreboard
}to"&cExample Scoreboard" set line
1of{-global
-scoreboard
}to"Online Players" # Custom scores are only available
on Minecraft 1.20.3
+!
set score
of line
1of{-global
-scoreboard
}to"&e%size of all players%"
set line
2of{-global
-scoreboard
}to"IP" set score
of line
2of{-global
-scoreboard
}to"&emyserver.com"
add all players
to{-global
-scoreboard
}
on join:
set player
's scoreboard
to{-global
-scoreboard
}
Per Player Scoreboards
Code (AppleScript):
on join:
set{_board
}to player
's scoreboard
set title
of{_board
}"My Scoreboard" set line
1of{_board
}to"Rank" # Custom scores are only available
on Minecraft 1.20.3
+!
set score
of line
1of{_board
}to{rank::
%player%
}
set line
2of{_board
}to"Coins" set score
of line
2of{_board
}to"&e%{coins::%player%}%"