Solved Is my permissions.yml configured wrong ?

Discussion in 'Plugin Help/Development/Requests' started by jkhazi, Nov 13, 2016.

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

    jkhazi

    Here it is

    Code:
    users:
      jkhazi:
        subgroups: []
        permissions: []
        group: Admin
      Example:
        subgroups: []
        permissions: []
        group: Member
    groups:
      Member:
        default: true
        permissions:
        - easywarp.command.warp
        - easywarp.command.listwarps
        - easywarp.command.help
        - easywarp.sign.use
        - QwickTree.use
        - QwickTree.notify
        - QwickTree.toggle.self
        - QwickTree.info
        inheritance: []
        info: []
      Admin:
        default: false
        permissions:
        - easywarp.*
        - -easywarp.delay.bypass
        - QwickTree.*
        - spinner.use
        - spinner.maxchunks.25
        - spinner.mark
        - spinner.alwayloaded
        - spinner.alwaysloaded
        - spinner.listothers
        - spinner.reload
        - spinner.clearplayer
        - spinner.status
        inheritance:
        - Member
        info: []
    - When I'm op, i try to mark a chunk and it says i need to set the "spinner.maxchuns.<n>" permission, which i have set up correctly.
    - When I'm not op, it says i don't have permissions to claim a chunk. I also can't set warp or do any basic things, thats why i think the server doesn't see the permissions file at all.
    - There are no errors in console.
    - I don't have any permission plugin
    - Craftbukkit 1.10.2 R0.1 SNAPSHOT if i remember correctly.
     
    Last edited: Nov 13, 2016
  2. Online

    timtower Administrator Administrator Moderator

    @jkhazi I am not sure if you can use the default permissions.yml this way.
    Why not get a permission plugin instead?
     
  3. Offline

    jkhazi

    The thread i copied said this is the default permission system but im new to all of this so can you recommend me a plugin for 1.10.2 ? I just want to claim the chunks :(
     
  4. Online

    timtower Administrator Administrator Moderator

    I personally only used PEX, you also have GroupManager, bPermissions (I think).
    But the choice is up to you.
     
  5. Offline

    jkhazi

    @timtower it says 1.9 for PEX, someone says it works on 1.10, gonna give it a try, thank you, i may come back to ask questions if i fail :D

    @timtower i read the tutorial on their github for PEX and did some adjustments to the code, it works now. Thanks :)

    Code:
    groups:
      Member:
        options:
          default: true
        permissions:
        - easywarp.command.warp
        - easywarp.command.listwarps
        - easywarp.sign.use
        - QwickTree.use
        - QwickTree.notify
        - QwickTree.toggle.self
      Admin:
        options:
          default: false
        permissions:
        - -easywarp.delay.bypass
        - easywarp.*
        - permissions.*
        - QwickTree.*
        - spinner.maxchunks.25
        - spinner.*
    users:
      29923306-8e3a-3f78-ab58-36da66588971:
        group: Admin
        options:
          name: jkhazi
        worlds:
          World39:
            group:
            - Admin
    schema-version: 1
    btw it gives an error in the console with schema version being invalid, when i delete the line it reappears so im gonna leave it alone, i hope it won't cause any problems in the future.

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Nov 15, 2016
Thread Status:
Not open for further replies.

Share This Page