Advertisement
hiturys

eeee

Aug 21st, 2019
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.70 KB | None | 0 0
  1. #Made By HituryBlobYT
  2.  
  3. on first join:
  4.  
  5.  
  6.  
  7.  
  8. variables:
  9. {kill counter.%player%.kills_session} = 0
  10. {kill counter.%player%.kills_session_max} = 0
  11. {kill counter.%player%.kills_total} = 0
  12. {kill counter.%player%.deaths_total} = 0
  13. {kill counter.%player%.kdr_total} = 0
  14. {versionno} = 1.1
  15.  
  16. on death:
  17.  
  18. attacker is a player
  19. add 1 to {kill counter.%attacker%.kills_total}
  20. add 1 to {kill counter.%attacker%.kills_session}
  21. set {kill counter.%player%.kdr_total} to {kill counter.%player%.kills_total} / {kill counter.%player%.deaths_total}
  22. apply regeneration 5 to attacker for 3 seconds
  23. {kill counter.%attacker%.kills_session} is greater than {kill counter.%attacker%.kills_session_max}:
  24. set {kill counter.%attacker%.kills_session_max} to {kill counter.%attacker%.kills_session}
  25.  
  26. on death of player:
  27. set {kill counter.%player%.kills_session} to 0
  28. add 1 to {kill counter.%player%.deaths_total}
  29. set {kill counter.%player%.kdr_total} to {kill counter.%player%.kills_total} / {kill counter.%player%.deaths_total}
  30.  
  31. options:
  32. # Scoreboard
  33. Title: &b&lBilt
  34.  
  35. # The lines, you can use %{rank.%loop-player%}% for the users group, %balance of loop-player% for their balance, and %player% for their name.
  36. Line3: &bName
  37. Line4: &a%loop-player%
  38. Line5: &bPlaytime
  39. Line6: &a%{Playtime::%loop-player%}% minutes
  40. Line7: &bKills
  41. Line8: &a%{kill counter.%player%.kills_total}%
  42. Line9: &bDeaths
  43. Line10: &a%{kill counter.%player%.deaths_total}%
  44. Line11: &bCoins
  45. Line12: &a%balance of loop-player%
  46. Line13: &bScoreboard by HituryGameYT
  47. Line1: &f
  48. Line2: &a&lBilt.minehut.gg
  49.  
  50. #ScoreBoard (You can add lines)
  51. every second:
  52. loop all players:
  53. wipe loop-player's sidebar
  54. set name of sidebar of loop-player to "{@Title}"
  55. set score "{@Line3}" in sidebar of loop-player to 9
  56. set score "{@Line4}" in sidebar of loop-player to 8
  57. set score "{@Line5}" in sidebar of loop-player to 7
  58. set score "{@Line6}" in sidebar of loop-player to 6
  59. set score "{@Line7}" in sidebar of loop-player to 5
  60. set score "{@Line8}" in sidebar of loop-player to 4
  61. set score "{@Line9}" in sidebar of loop-player to 3
  62. set score "{@Line10}" in sidebar of loop-player to 2
  63. set score "{@Line11}" in sidebar of loop-player to 1
  64. set score "{@Line12}" in sidebar of loop-player to 0
  65. set score "{@Line13}" in sidebar of loop-player to -1
  66. set score "{@Line1}" in sidebar of loop-player to -2
  67. set score "{@Line2}" in sidebar of loop-player to -3
  68.  
  69.  
  70.  
  71.  
  72.  
  73.  
  74.  
  75. every 60 seconds:
  76. loop all players:
  77. add 1 to {Playtime::%loop-player%}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement