Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.03 KB | None | 0 0
  1. on first join:
  2. set {coin::%player%} to 0
  3. set {kills::%player%} to 0
  4. set {kt::%player%} to false
  5. set {killmsg} to "&6&l[+1] &eNice Kill!"
  6. on death:
  7. add 1 to {kills::%attacker%}
  8. send "%{killmsg}%" to attacker
  9.  
  10. on death:
  11. if victim is zombie:
  12. chance of 5%:
  13. add 10 to {coin::%attacker%}
  14. send "&6&lNice! &eYou earned 10 coins for your hard work" to attacker
  15. chance of 4%:
  16. add 15 to {coin::%attacker%}
  17. send "&6&lNice! &eYou earned 15 coins for your hard work" to attacker
  18. chance of 3%:
  19. add 30 to {coin::%attacker%}
  20. send "&6&lNice! &eYou earned 30 coins for your hard work" to attacker
  21. chance of 2%:
  22. add 50 to {coin::%attacker%}
  23. send "&6&lNice! &eYou earned 50 coins for your hard work" to attacker
  24. chance of 1%:
  25. add 100 to {coin::%attacker%}
  26. send "&6&lNice! &eYou earned 100 coins for your hard work" to attacker
  27.  
  28.  
  29.  
  30. options:
  31. Title: &6&lBlazeSkyBlock
  32.  
  33.  
  34. every second:
  35. loop all players:
  36. wipe loop-player's sidebar
  37. set name of sidebar of loop-player to "{@Title}"
  38. set score "&7- &eKills:" in sidebar of loop-player to 8
  39. set score "%{kills::%loop-player%}% " in sidebar of loop-player to 7
  40. set score "&7- &ePlayer:" in sidebar of loop-player to 6
  41. set score "%loop-player%" in sidebar of loop-player to 5
  42. set score "&7- &eBlazeCoins:" in sidebar of loop-player to 4
  43. set score "&6ⓑ %{coin::%loop-player%}% ⓑ" in sidebar of loop-player to 3
  44. set score "&7- &eBalance:" in sidebar of loop-player to 2
  45. set score "&6%balance of loop-player%" in sidebar of loop-player to 1
  46.  
  47.  
  48.  
  49.  
  50. command /rename <text>:
  51. permission: rn.use
  52. trigger:
  53. set name of player's tool to coloured arg 1
  54. send "&eRenamed your &a%player's tool% to %coloured arg 1%"
  55.  
  56. command /parkour:
  57. permission: pk.use
  58. trigger:
  59. broadcast "&8[&bParkour&8] - &f%player% has completed the parkour and earned &a$5,000!"
  60. make the console execute command "eco add %player% 5000"
  61. make the console execute command "spawn %player%"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement