Advertisement
TeamWooloo

Scoreboard Things

Mar 5th, 2016
6,848
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. /Scoreboard cheat sheet
  2.  
  3. OBJECTIVES
  4.  
  5. /scoreboard objectives add <name> <type>
  6.  
  7. Most used Objective types:
  8. Not updating: dummy
  9. Modifyable: deathCount, playerKillCount, totalKillCount
  10. Always Matching: health, food, level, armor, xp
  11.  
  12. /scoreboard objectives setdisplay <display> <Objective>
  13.  
  14. Most used displays: sidebar, belowName, list
  15.  
  16. /scoreboard objectives list
  17.  
  18. This will give a list of all created objectives
  19.  
  20. PLAYERS
  21.  
  22. /scoreboard players set <Player/Selector> <Objective> <Score>
  23. This sets the score to specific amount
  24.  
  25. /scoreboard players add <Player/Selector> <Objective> <Score>
  26. /scoreboard players remove <Player/Selector> <Objective> <Score>
  27. This adds or removes from current score
  28.  
  29. /scoreboard players reset <Player/Selector> <Objective>
  30. This will remove the score
  31.  
  32. SELECTORS
  33. Replace "Objective" with whatever objective you want to use
  34.  
  35. @a[score_Objective_min=3]
  36. This will select all players with AT LEAST 3 (or whatever you fill in)
  37.  
  38. @a[score_Objective=3]
  39. This will select all players with AT MOST 3 (or whatever you fill in)
  40.  
  41. @a[score_Objective_min=3,score_Objective=3]
  42. This will select all players with EXACTLY 3 (or whatever you fill in)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement