Advertisement
phanaticd

Untitled

Aug 10th, 2016
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.19 KB | None | 0 0
  1. # Custom blacklists
  2. #
  3. # You can name these whatever you want, a permission with the appropriate name
  4. # will be created automatically.
  5. #
  6. # The lists below serve only as an example, feel free to rename, remove or
  7. # add lists according to your server's needs.
  8. blacklist:
  9. basic:
  10. items:
  11. - 'minecraft:mob_spawner'
  12. - 'minecraft:command_block_minecart'
  13. - 'minecraft:command_block'
  14.  
  15.  
  16. # Whitelist - items to allow arbitrary nbt on.
  17. # Enchanted items may not be safe e.g. looting 32000.
  18. whitelist:
  19. - 'minecraft:spawn_egg'
  20. - 'minecraft:enchanted_book'
  21. - 'minecraft:shield'
  22. - 'minecraft:map'
  23. - 'minecraft:filled_map'
  24. - 'minecraft:barrier'
  25. - 'minecraft:firework'
  26. - 'minecraft:skull'
  27. - 'minecraft:banner'
  28. - 'minecraft:bow'
  29. - 'minecraft:iron_axe'
  30. - 'minecraft:wooden_axe'
  31. - 'minecraft:stone_axe'
  32. - 'minecraft:diamond_axe'
  33. - 'minecraft:golden_axe'
  34. - 'minecraft:iron_sword'
  35. - 'minecraft:wooden_sword'
  36. - 'minecraft:stone_sword'
  37. - 'minecraft:diamond_sword'
  38. - 'minecraft:golden_sword'
  39. - 'minecraft:leather_helmet'
  40. - 'minecraft:leather_chestplate'
  41. - 'minecraft:leather_leggings'
  42. - 'minecraft:leather_boots'
  43. - 'minecraft:chainmail_helmet'
  44. - 'minecraft:chainmail_chestplate'
  45. - 'minecraft:chainmail_leggings'
  46. - 'minecraft:chainmail_boots'
  47. - 'minecraft:iron_helmet'
  48. - 'minecraft:iron_chestplate'
  49. - 'minecraft:iron_leggings'
  50. - 'minecraft:iron_boots'
  51. - 'minecraft:diamond_helmet'
  52. - 'minecraft:diamond_chestplate'
  53. - 'minecraft:diamond_leggings'
  54. - 'minecraft:diamond_boots'
  55. - 'minecraft:golden_helmet'
  56. - 'minecraft:golden_chestplate'
  57. - 'minecraft:golden_leggings'
  58. - 'minecraft:golden_boots'
  59.  
  60. # In strings
  61. # %1$s - player name.
  62. # %2$s - item name.
  63. # %3$s - full item nbt.
  64. # Note: you can limit the length of the strings with the following:
  65. # %3$.80s - full item nbt (limited to 80 characters).
  66.  
  67. # Action when a player spawns an item not in the creative menu.
  68. unavailable:
  69. # Optional, defaults to true
  70. # block: true
  71.  
  72. # Optional, if not set, no message is sent.
  73. message: 'You do not have permission for %2$s.'
  74.  
  75. # Optional, defaults to bukkit.broadcast.admin
  76. # broadcastPermission: bukkit.broadcast.admin
  77.  
  78. # Optional, if not set, no broadcast is sent.
  79. #broadcastMessage: '%1$s attempted to spawn in %3$s'
  80. broadcastMessage:
  81.  
  82. # List of commands, to run.
  83. # commands:
  84. # - 'kick %1$s You do not have permission for %2$s.'
  85.  
  86. # Action when a player spawns an item in the creative menu they have no permission for.
  87. # Any of the values from the unavailable action can be set here.
  88. nopermission:
  89. message: 'You do not have permission for %2$s.'
  90.  
  91. # Action when a player spawns an item which is blacklisted.
  92. # Any of the values from the unavailable action can be set here.
  93. blacklisted:
  94. message: 'You do not have permission for %2$s.'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement