Advertisement
Guest User

Untitled

a guest
Oct 18th, 2019
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.98 KB | None | 0 0
  1. command /setcircle1:
  2. permission: *
  3. trigger:
  4. set {loccircleone} to player's location
  5. send "&cTurm/Kreis 1 wurde zu %{loccircleone}% gesetzt!" to player
  6.  
  7. every tick:
  8. loop players in radius 7 around {loccircleone}:
  9. if {Blau.%loop-player%} is true:
  10. loop blocks in radius 7 around {loccircleone}:
  11. if loop-block is white wool or red wool:
  12. wait 5 seconds
  13. set loop-block to blue wool block
  14. send "Test" to loop-player
  15. else:
  16. stop
  17. else:
  18. if {Rot.%loop-player%} is true:
  19. loop blocks in radius 7 around {loccircleone}:
  20. if loop-block is white wool or blue wool:
  21. send "Test" to loop-player
  22. wait 5 seconds
  23. set loop-block to red wool block
  24.  
  25. command /blue:
  26. trigger:
  27. send "&9Team Blau betreten." to player
  28. set {Rot.%player%} to false
  29. set {Blau.%player%} to true
  30.  
  31. command /red:
  32. trigger:
  33. send "&cTeam Rot betreten." to player
  34. set {Rot.%player%} to true
  35. set {Blau.%player%} to false
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement