PermissionsEX ladders

Discussion in 'Bukkit Help' started by Kaeleido, Jul 12, 2013.

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

    Kaeleido

    I have been trying to work out with problems promoting users.
    I always get the error that the user is not in the ladder, I tried adding rank-ladder: but it never works. I've been working on this for 3 hours to no avail.

    groups:
    Nomad:
    prefix: '&7Nomad '
    default: true
    permissions:
    - modifyworld.*
    - authme.register
    - authme.login
    - authme.logout
    options:
    rank:1500
    rank-ladder:world
    Member:
    prefix: '&fMember '
    inheritance:
    - Nomad
    permissions:
    options:
    rank:1400
    rank-ladder:world

    I used a YAML checker and it came out with no errors.
    Any help is appreciated!
     
  2. Offline

    Kaeleido

    Bleugh... I can't seem to figure out the problem, this is the last obstacle between now and starting my server... Help is appreciated!
     
  3. Offline

    Go4Nightfire

    Rank: '1400'
    Rank-ladder: world
    And didnt you forgot spaces in the beginning of some lines or did it dissappeared when coppied here?
    With that spaces I mean this:
    You forgot the space and the ' around the number. I think it should work now. Have fun with your new server :).

    Fixed it?

    EDIT by Moderator: merged posts, please use the edit button instead of double posting.
     
    Last edited by a moderator: Jun 3, 2016
  4. Offline

    imoHosting

    Hello,
    If you have or haven't fixed this, in the future should you ever need any support, feel free to submit a ticket on our website and we'll be more than happy to help, we have highly experienced staff always on standby, answering tickets about anything!
     
  5. Offline

    Kaeleido

    Unfortunately not. I'm waiting for some help :/

    Again it's not because of missing spaces as it's correctly checked by a YAML parser .
     
  6. Offline

    random_username

    I fixed the permissions you pasted at the top of the page. you got the spacing wrong, and you forgot to add the ' ' for the rank numbers. remember always to add those when putting numbers. It would be:
    Code:
    groups:
      Nomad:
        prefix: '&7Nomad '
        default: true
        permissions:
        - modifyworld.*
        - authme.register
        - authme.login
        - authme.logout
        options:
          rank: '1500'
          rank-ladder: world
      Member:
        prefix: '&fMember '
        inheritance:
        - Nomad
        permissions:
        options:
          rank: '1400'
          rank-ladder: world
    Hope I helped.
     
  7. Offline

    Kaeleido

    It still didn't work. I also realized even the highest ranks can't even use some commands like essentials warp, I think there's yet another problem with inheritance. Darn setting up permissions couldn't be harder....
    http://pastebin.com/ZCEXBWFh
    {
    "groups": {
    "Member": {
    "prefix": "&fMember ",
    "inheritance": [
    "Nomad"
    ],
    "options": "rank:1400 rank-ladder:world",
    "permissions": [
    "bukkit.command.me",
    "essentials.me",
    "essentials.afk",
    "essentials.balance",
    "essentials.warp.redtown2",
    "essentials.tpa",
    "essentials.tpahere",
    "essentials.suicude",
    "essentials.sethome",
    "essentials.mail",
    "essentials.mail.send",
    "essentials.motd",
    "essentials.tpaccept",
    "essentials.tpdeny",
    "essentials.helpop",
    "essentials.helpop.receive",
    "essentials.help",
    "essentials.home",
    "essentials.pay",
    "essentials.ignore",
    null
    ]
    },
    "Nomad": {
    "default": true,
    "prefix": "&7Nomad ",
    "options": "rank:1500 rank-ladder:world",
    "permissions": [
    "modifyworld.*",
    "bukkit.command.tell",
    "bukkit.command.kill",
    "authme.register",
    "authme.login",
    "authme.logout",
    "bukkit.command.help",
    "essentials.rules"
    ]
    },
    "Seasoned": {
    "prefix": "&aSeasoned ",
    "inheritance": [
    "Member"
    ],
    "options": "rank:1300 rank-ladder:world",
    "permissions": [
    "essentials.warp.list",
    "essentials.spawn"
    ]
    }
    }
    }
     
  8. Offline

    random_username

    could you post all your permissions file?
     
  9. Offline

    Kaeleido

    Unfortunately I'm not allowed to do that, sorry, but you can ask about the characteristics of my list,
     
Thread Status:
Not open for further replies.

Share This Page