Advertisement
Brack04NC

Untitled

Jan 9th, 2020
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.50 KB | None | 0 0
  1. #
  2. # GroupManager+
  3. # config.yml
  4. #
  5. settings:
  6. config:
  7. # With this enabled anyone set as op has full permissions when managing GroupManager
  8. # The user will be able to promote players to the same group or even above.
  9. opOverrides: true
  10.  
  11. # Default setting for 'mantogglevalidate'
  12. # true will cause GroupManager to attempt name matching by default.
  13. validate_toggle: true
  14. # ************************************************************************************************************************************************************
  15. # *** NOTE: Having this feature enabled can allow improper use of Command Blocks which may lead to undesireable permission changes. You have been warned! ***
  16. # ************************************************************************************************************************************************************
  17. allow_commandblocks: false
  18.  
  19. data:
  20. save:
  21. # How often GroupManager will save it's data back to groups.yml and users.yml
  22. minutes: 3
  23. # Number of hours to retain backups (plugins/GroupManager/backup)
  24. hours: 24
  25.  
  26. logging:
  27. # Level of detail GroupManager will use when logging.
  28. # Acceptable entries are - ALL,CONFIG,FINE,FINER,FINEST,INFO,OFF,SEVERE,WARNING
  29. level: INFO
  30.  
  31. mirrors:
  32. # Worlds listed here have their settings mirrored in their children.
  33. # The first element 'world' is the main worlds name, and is the parent world.
  34. # subsequent elements 'world_nether' and 'world_the_end' are worlds which will use
  35. # the same user/groups files as the parent.
  36. # the element 'all_unnamed_worlds' specifies all worlds that aren't listed, and automatically mirrors them to it's parent.
  37. # Each child world can be configured to mirror the 'groups', 'users' or both files from its parent.
  38. world:
  39. world:
  40. -user
  41. -group
  42. world_nether:
  43. - users
  44. - groups
  45. world_the_end:
  46. - users
  47. - groups
  48. all_unnamed_worlds:
  49. - users
  50. - groups
  51. # world2: (World2 would have it's own set of user and groups files)
  52. # world3:
  53. # - users (World3 would use the users.yml from world2, but it's own groups.yml)
  54. # world4:
  55. # - groups (World4 would use the groups.yml from world2, but it's own users.yml)
  56. # world5:
  57. # - world6 (this would cause world6 to mirror both files from world5)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement