Solved PermissionsEx Error in comand syntax Help

Discussion in 'Bukkit Help' started by RDPaul, Apr 30, 2013.

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

    RDPaul

    Hi.
    I am currently making a minecraft bukkit server and I need a group plugin and the only one I really liked was PermissionsEx. After setting up the permissions.yml file I tried it out and it said: Error in command syntax. Through notepad++ I used something to replace tabs with spaces.. thinking maybe tabs slipped in somewhere. I tried and sure did have some tabs, checking them to make sure there were no more. There were none more. I loaded up the server again and still it says "Error in Command Syntax: Check Command Help" or whatever it is so I don't know what it is. I have lots of plugins and enabled ChatManager so I don't know whats wrong. I have a file of my permissions.yml here.
    Thank you

    http://pastebin.com/Qr9pfzFM

    Can repair mi file pls??
     
  2. Offline

    Boba4237sdad

    You did something wrong, when uploading the file to pastbin:

    Code:
    http://www1.zippyshare.com/v/13363983/file.html
    Try to upload it again
     
  3. Offline

    Necrodoom

  4. Offline

    RDPaul

  5. Offline

    Iroh

  6. Offline

    RDPaul


    Appear many errors

    I try enter and say

    Internal server error
     
  7. Offline

    Iroh

    Yaml wise mine is fine. What about the global groups.
     
  8. Offline

    Boba4237sdad

    First of all, just because the file passes a yaml syntax check, it doesn't mean it will work.
    You need to get a basic understanding on how to format a YAML file, to have the file do what you want.

    Second, you need to have an understanding of the permissions, how to arrange the information and which dependencies there are. Think of a tree. When you start with the trunk, you will find branches attached to the trunk, then twigs attached to the branches, and then leaves attached to the twigs, so a tree would look like this:

    Code:
    Trunk
      Branch
        Twigs
          Leaves
      Root
    Here is a suggestion on a file that might work for you. Be careful when editing it, so the formatting is kept with the correct amount of spaces in front of the different levels.

    Code:
    groups:
      Admin:
        default: false
        permissions:
          - '*'
          - residence.admin
        prefix: '&0[&Admin&0]&f'
        options:
        build: true
        rank: '1'
        suffix: '''&7'
      Miembro:
        default: true
        worlds:
          - world
          - the_end
          - nether
        rank: '100'
        suffix: '''&7'''
        prefix: '''&0[&3Miembro&0]&f'''
        permissions:
           - modifyworld.*
      Helper:
        default: false
        worlds:
        permissions:
        rank:   '70'
      Moderador:
        default: false
        worlds:
        permissions:
        rank: '50'
        prefix: '''&b[&6VIP&b]&f'
        suffix: '''&7'''
      Creador:
        default: false
        worlds:
        permissions:
        rank: '5'
        prefix: '''&0[&4Creador&0]&f'''
        suffix: '''&7'''
      Vip:
        default: false
        worlds:
        permissions:
        rank: '60'
        prefix: '''&b[&6VIP&b]&f'
        suffix: '''&7'''
        worlds:
          - world
    
    BUT! You need to fill in permissions for all ranks, or find a way to use inheritance
     
Thread Status:
Not open for further replies.

Share This Page