Guest User

Untitled

a guest
Nov 11th, 2018
749
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. command /Perks:
  2. trigger:
  3. wait 1 tick
  4. open chest with 1 rows named "&8» &ePerks" to player
  5. wait 1 tick
  6. format slot 0 of player with eye of ender named "&8» &eNachtsicht" with lore "&8» &7Nachtsicht" to run "Nightvision %player%"
  7. format slot 1 of player with fire charge named "&8» &eFeuer Resistenz" with lore "&8» &7Du erhälst keinen Feuerschaden mehr" to run "Fireresist %player%"
  8. format slot 2 of player with bottle of enchanting named "&8» &eDoppelte Block-EXP" with lore "&8» &7Erhalte doppelte Block EXP" to run "blockexp %player%"
  9.  
  10. command /Nightvision <player>:
  11. trigger:
  12. if {coin.%arg 1%} is more than 9999:
  13. execute console command "effect %arg 1% night_vision 99999"
  14. subtract 10000 from {coin.%arg 1%}
  15. else:
  16. send "Zu wenig Geld" to arg 1
  17.  
  18. command /Fireresist <player>:
  19. trigger:
  20. if {coin.%arg 1%} is more than 9999:
  21. execute console command "effect %arg 1% fire_resistance 99999"
  22. subtract 10000 from {coin.%arg 1%}
  23. else:
  24. send "Zu wenig Geld" to arg 1
  25.  
  26. command /Blockexp <player>:
  27. trigger:
  28. if {coin.%arg 1%} is more than 9999:
  29. set {blockdrop.%arg 1%} to true
  30. subtract 10000 from {coin.%arg 1%}
  31. send "Doppelte Block-EXP aktiviert!" to arg 1
  32. else:
  33. send "Zu wenig Geld" to arg 1
  34.  
  35. #Benötigt Skellet
  36. on block experience drop:
  37. {blockdrop.%player%} is true
  38. #broadcast "&6%dropped block xp%"
  39. set block xp to dropped block xp*2
  40. #broadcast "&6%dropped block xp%"
  41.  
  42. command /Geld:
  43. trigger:
  44. add 100000 to {coin.%player%}
  45.  
  46. #youtube.com/L0v0lup
Add Comment
Please, Sign In to add comment