/scoreboard players add @p TotalKills 1
/scoreboard players set @e[type=Zombie] TempScore 5
/scoreboard players remove Notch Deaths 1
No dev release is complete without a couple of headaches. The team deprecated the legacy updateScore(team, points) method in favor of a unified event object:
// Old (1.7.x) scoreboard.updateScore("home", 3);
// New (1.8.1) scoreboard.emitEvent( type: "POINTS", team: "home", value: 3, timestamp: Date.now() );Scoreboard 1.8.1 Dev
The old method still works but now logs a deprecation warning in dev mode. It will be removed in 1.9.0. /scoreboard players add @p TotalKills 1 /scoreboard players
Scoreboard 1.8.1 is a minor maintenance and polish release focused on bug fixes, small usability improvements, and performance optimizations following the larger 1.8.0 feature set. This release addresses several regressions introduced in 1.8.0, cleans up UI inconsistencies, and readies the codebase for an upcoming 1.9.0 feature sprint. No dev release is complete without a couple of headaches