Advertisement
Guest User

Untitled

a guest
Aug 4th, 2016
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. action-rules {
  2. place-block {
  3. filter {
  4. # Placing wood planks
  5. block = "{'state': {'type': {'id': 'minecraft:tnt'}}}",
  6. },
  7. response {
  8. match = [
  9. "command(msg <player> Don't place that block!)",
  10. "deny"
  11. ]
  12. }
  13. }
  14. use-item {
  15. filter {
  16. item = "{'type': 'minecraft:egg'}"
  17. },
  18. response {
  19. match = [
  20. "command(msg <player> you're not allowed do that!)",
  21. "deny"
  22. ]
  23. }
  24. },
  25.  
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement