Advertisement
Guest User

Config File (Group Manager)

a guest
Dec 20th, 2012
31
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
YAML 1.80 KB | None | 0 0
  1. settings:
  2.   config:
  3.    # With this enabled anyone set as op has full permissions when managing GroupManager
  4.     # The user will be able to promote players to the same group or even above.
  5.     opOverrides: true
  6.    
  7.     # Default setting for 'mantoglevalidate'
  8.     # true will cause GroupManager to attempt name matching by default.
  9.     validate_toggle: true
  10.    
  11.   data:
  12.     save:
  13.      # How often GroupManager will save it's data back to groups and users.yml
  14.       minutes: 10
  15.       # Number of hours to retain backups (plugins/GroupManager/backup)
  16.       hours: 24
  17.      
  18.   logging:
  19.    # level of detail GroupManager will use when logging.
  20.     # Acceptable entries are - ALL,CONFIG,FINE,FINER,FINEST,INFO,OFF,SEVERE,WARNING
  21.     level: INFO
  22.    
  23.   mirrors:
  24.        # Worlds listed here have their settings mirrored in their children.
  25.         # The first element 'world' is the main worlds name
  26.         # subsequent elements 'world_nether' and 'world_the_end' are worlds which will use
  27.         # the same user/groups files as the parent.
  28.         # Each child world can be configured to mirror the 'groups', 'users' or both files from it's parent.
  29.         NovaVilla:
  30.           NovaVilla_nether:
  31.          - users
  32.           - groups
  33.           NovaVilla_the_end:
  34.          - users
  35.           - groups
  36.           ContestMap:
  37.          - users
  38.           - groups
  39.           TheHub:
  40.          - users
  41.           - groups
  42.     #  world2:      (World2 would have it's own set of user and groups files)
  43.     #    world3:
  44.     #    - users    (World3 would use the users.yml from world2, but it's own groups.yml)
  45.     #    world4:
  46.     #    - groups   (World4 would use the groups.yml from world2, but it's own users.yml)
  47.     #  world5:
  48.     #    - world6   (this would cause world6 to mirror both files from world5)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement