Help with permissions, groups problem maybe.

Discussion in 'Plugin Development' started by Cowboys1919, Jul 15, 2012.

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

    Cowboys1919

    Hey, I posted on the bukkit consulting firm but i think a lot of people that can help me will be looking is the Plugin Development section. Please check out my post here (not my solution to someone else's, but a little further up, about the permissions)
     
  2. I dont see posts after it, can you place thext here?
     
  3. Offline

    Cowboys1919

    The post was up not down, but here is what i wrote:

    Anyways, I have a question of my own, I'm trying to configure my permissions.yml for my custom spleef server.
    I have 3 permissions in my plugin, spleef.player, spleef.moderator, and spleef.admin. I want moderator to inherit player and admin to inherit moderator. This is what i have:
    Code:
    groups:
        players:
            default: true
            permissions:
                spleef.player: true
                bukkit.command.list: true
        moderators:
            default: false
            inheritance:
            - players
            permissions:
                spleef.moderator: true
                bukkit.command.help: true
                bukkit.command.kick: true
                bukkit.command.ban.*: true
                bukkit.command.unban.*: true
        admins:
            default: false
            inheritance:
            - moderators
            permissions:
                spleef.admin: true
                bukkit.command.*: true
    users:
        Cowboys1919:
            groups:
            - admins
    I've tested it out and i can't use things like kick and my plugin doesn't pick up the spleef.admin.

    What am i doing wrong here?
     
  4. I think you messing up permisisonsbukkit and permissions.yml
     
    Cowboys1919 likes this.
  5. Offline

    Cowboys1919

    ..um, so where am i supposed to put this content..? Not in permissions.yml?
    THANK YOU :D
     
Thread Status:
Not open for further replies.

Share This Page