Need Some help with group manager.

Discussion in 'Bukkit Help' started by Nathanlevi, May 18, 2013.

Thread Status:
Not open for further replies.
  1. Offline

    Nathanlevi

    Hello, I am having some trouble with group manager.
    I can't manage to understand why its not mirroring, Do i need to use globalgroups?
    this is my current config file, i am running 3 worlds, World, Plotworld, and skyworld

    I Have tried;
    Code:
      mirrors:
        world:
        - users
        - groups
        world_nether:
        - users
        - groups
    
    That did not give me the desired results as when a player moved world, they went back to default.

    My current config looks like this

    Code:
    settings:
      config:
        opOverrides: true
        bukkit_perms_override: true
        validate_toggle: true
      data:
        save:
          minutes: 10
          hours: 24
      logging:
        level: INFO
      mirrors:
        world:
          - world_nether
          - world_the_end
          - plotworld
          - skyworld
    
    Any help is greatly appreciated as i am rather lost.
     
  2. Offline

    Necrodoom

    config pasted is about an year old, what groupmanager version you are running? also, a groupmanager wiki exists.
     
    Nathanlevi likes this.
  3. Offline

    Bobcat00

    You could use something like this:

    Code:
      mirrors:
          world:
              world_nether:
              - users
              - groups
              world_the_end:
              - users
              - groups
              plotworld:
              - users
              - groups
              skyworld:
              - users
              - groups
    
    P.S. Did you remember to do /manload ?
     
  4. Offline

    Nathanlevi

    I have deleted my config file and redone the mirroring it now looks like :

    Code:
    settings:
      config:
        # With this enabled anyone set as op has full permissions when managing GroupManager
        # The user will be able to promote players to the same group or even above.
        opOverrides: true
       
        # Default setting for 'mantoglevalidate'
        # true will cause GroupManager to attempt name matching by default.
        validate_toggle: true
        # **********************************************************************************************************************************
        # *** NOTE: Having this feature enabled, improper use of commandblocks will lead to undesireable permission changes, be alarmed! ***
        # **********************************************************************************************************************************
        allow_commandblocks: false
       
      data:
        save:
          # How often GroupManager will save it's data back to groups and users.yml
          minutes: 10
          # Number of hours to retain backups (plugins/GroupManager/backup)
          hours: 24
         
      logging:
        # level of detail GroupManager will use when logging.
        # Acceptable entries are - ALL,CONFIG,FINE,FINER,FINEST,INFO,OFF,SEVERE,WARNING
        level: INFO, FINE, SEVERE, WARNING,
       
      mirrors:
            # Worlds listed here have their settings mirrored in their children.
            # The first element 'world' is the main worlds name
            # subsequent elements 'world_nether' and 'world_the_end' are worlds which will use
            # the same user/groups files as the parent.
            # Each child world can be configured to mirror the 'groups', 'users' or both files from it's parent.
            world:
              world_nether:
              - users
              - groups
              world_the_end:
              - users
              - groups
              plotworld:
              - users
              - groups
              skyworld:
              - users
              - groups
        #    world3:
        #    - users    (World3 would use the users.yml from world2, but it's own groups.yml)
        #    world4:
        #    - groups  (World4 would use the groups.yml from world2, but it's own users.yml)
        #  world5:
        #    - world6  (this would cause world6 to mirror both files from world5)
    Hopefully there are no errors but i have been manually copy and pasting so people have been having the same permissions in all worlds hopefully this helps. i have the latest groupmanager version.

    i am new to owning a server so i appreciate you guys responding and helping thanks. and let me know if there are any errors there, ive not had chance to see if they are mirroring yet as no one new has entered my user base yet.
     
Thread Status:
Not open for further replies.

Share This Page