angushushu

Panilla

Aug 13th, 2023 (edited)
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.76 KB | Gaming | 0 0
  1. ##################################################################
  2. # Panilla Bukkit Configuration
  3. #
  4. # Resource page: https://www.spigotmc.org/resources/65694/
  5. # Source code: https://github.com/Ruinscraft/Panilla
  6. # Issues and help https://github.com/Ruinscraft/Panilla/issues
  7. ##################################################################
  8.  
  9. # The language option below currently does nothing.
  10. language: en
  11.  
  12. # Logging options
  13. logging:
  14. console: true
  15. chat: true
  16.  
  17. # Strictness of how much you wish to enforce
  18. # lenient - Only prevent game-breaking things or crashes
  19. # average - Prevent most abusive things (recommended)
  20. # strict - Prevent anything non-vanilla
  21. strictness: lenient
  22.  
  23. # This prevents users from creating high resolution skulls with
  24. # a Minecraft Education account (or possibly other methods)
  25. #
  26. # See this paste for more information: https://paste.ubuntu.com/p/SSGg6szMc4/
  27. prevent-minecraft-education-skulls: false
  28.  
  29. # This prevents FAWE brush NBT on items. It stops users from giving
  30. # out FAWE brush items which may trick others into accidentally WorldEdit'ing
  31. prevent-fawe-brush-nbt: false
  32.  
  33. # When checking packets, by default, Panilla will check any inventory (player, chest, etc...)
  34. # Setting this to true will make Panilla only check player inventories
  35.  
  36. # This can help with ensuring custom GUI's in plugins don't get flagged
  37. # This may also marginally improve performance
  38. ignore-non-player-inventories: false
  39.  
  40. # When true, this will prevent any BlockEntityTag NBT regardless of strictness
  41. # This will break things like ShulkerBoxes
  42. # Generally not recommended
  43. no-block-entity-tag: false
  44.  
  45. # Whitelist NBT tags from being checked
  46. # Keep in mind some NBT tags vary between Minecraft versions
  47. # (eg: ench on 1.12 vs Enchantments on 1.13)
  48. nbt-whitelist:
  49. - Enchantments
  50.  
  51. # Prevent Panilla from checking NBT in certain worlds
  52. # Effectively sets the world to the lenient strictness (to prevent crash exploits)
  53. # Case sensitive!
  54. disabled-worlds:
  55. # - world_nether
  56. # - some_other_world_name
  57.  
  58. # Override Minecraft's max enchantment levels
  59. # Useful if you want to manually set a max enchantment level for specific enchantments
  60. # You must use either normal or strict mode for this to work
  61. # Find a list of Minecraft enchantment names here: https://www.digminecraft.com/lists/enchantment_list_pc.php
  62. max-enchantment-levels:
  63. override-minecraft-max-enchantment-levels: false
  64. overrides:
  65. sharpness: 6
  66. protection: 4
  67. feather_falling: 10
  68.  
  69. # This is to prevent crash items which have an excessive
  70. # amount of NBT keys.
  71. #
  72. # If you have plugins which use an excessive amount of
  73. # custom NBT keys, then you can raise it as high as you like.
  74. #
  75. # Generally, you should never have to touch this.
  76. max-non-minecraft-nbt-keys: 16
  77.  
Advertisement
Add Comment
Please, Sign In to add comment