Solved Permissionsex isnt working

Discussion in 'Bukkit Help' started by micrlink, Jun 11, 2012.

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

    micrlink

    I have permissionsex and I entered and double checked all my node from the plugins wiki pages but still /tpa and /sethome dont work.
    my permissions.yml

    groups:
    Citizens:
    default: true
    prefix: '&6[Citizens]&f '
    permissions:
    -essentials.kit
    -essentials.kit.*
    -essentials.balance
    -essentials.balance.others
    -essentials.balancetop
    -essentials.eco
    -essentials.pay
    -'essentials.afk'
    -essentials.help
    -essentials.help.*
    - -essentials.help.mobdisguise
    -essentials.list
    -essentials.mail
    -essentials.mail.send
    -'essentials.msg'
    -essentials.msg.*
    -essentials.rules
    -essentials.clearinventory
    -essentials.spawn
    -essentials.back.ondeath
    -essentials.delhome
    -essentials.home
    -'essentials.sethome.multiple.unlimited'
    -'essentials.sethome'
    -essentials.tpa
    -essentials.world.*
    -essentials.tpaccept
    -essentials.tpdeny
    -essentials.warp.*
    -ChestShop.shop.create
    -ChestShop.shop.buy
    -ChestShop.shop.sell
    -lwc.protect
    worlds:
    Survival:
    permissions:
    -essentials.kit
    -essentials.kit.*
    -essentials.balance
    -essentials.balance.others
    -essentials.balancetop
    -essentials.eco
    -essentials.pay
    -essentials.afk
    -essentials.help
    -essentials.help.*
    - -essentials.help.mobdisguise
    -essentials.list
    -essentials.mail
    -essentials.mail.send
    -essentials.msg
    -essentials.msg.*
    -essentials.rules
    -essentials.clearinventory
    -essentials.spawn
    -essentials.back.ondeath
    -essentials.delhome
    -essentials.home
    -essentials.delhome
    -essentials.sethome.multiple.unlimited
    -essentials.sethome
    -essentials.tpa
    -essentials.world.*
    -essentials.tpaccept
    -essentials.tpdeny
    -essentials.warp.*
    -ChestShop.shop.create
    -ChestShop.shop.buy
    -ChestShop.shop.sell
    -lwc.protect
    Freebuild:
    permissions:
    -worldedit.*
    Architect:
    default: false
    prefix: '&2[Architect]&f '
    permissions:
    -WirelessRedstone.commands.wrremove
    -WirelessRedstone.commands.help
    -WirelessRedstone.commands.wrlist
    -WirelessRedstone.commands.wri
    -WirelessRedstone.commands.wrc
    -WirelessRedstone.commands.wrt
    -WirelessRedstone.commands.wrr
    -WirelessRedstone.createsign
    worlds:
    Survival:
    permissions:
    -
    Freebuild
    permissions:
    -

    Moderator:
    default: false
    prefix: '&1[Mod]&f
    permissions:
    -
    worlds:
    Survival:
    permissions:
    -
    Freebuild
    permissions:


    Admin:
    default: false
    prefix: '&c[Admin]&f
     
  2. Offline

    Magi1053

    Fixed. I also removed the mobdisguise help, because essentials help only displays the command that a user has permission to use.
    Code:
    groups:
        Citizens:
            default: true
            prefix: '&6[Citizens]&f '
            permissions:
            - essentials.kit
            - essentials.kit.*
            - essentials.balance
            - essentials.balance.others
            - essentials.balancetop
            - essentials.eco
            - essentials.pay
            - essentials.afk
            - essentials.help
            - essentials.help.*
            - essentials.list
            - essentials.mail
            - essentials.mail.send
            - essentials.msg'
            - essentials.msg.*
            - essentials.rules
            - essentials.clearinventory
            - essentials.spawn
            - essentials.back.ondeath
            - essentials.delhome
            - essentials.home
            - essentials.sethome.multiple.unlimited'
            - essentials.sethome
            - essentials.tpa
            - essentials.world.*
            - essentials.tpaccept
            - essentials.tpdeny
            - essentials.warp.*
            - ChestShop.shop.create
            - ChestShop.shop.buy
            - ChestShop.shop.sell
            - lwc.protect
        Survival:
            permissions:
            - essentials.kit
            - essentials.kit.*
            - essentials.balance
            - essentials.balance.others
            - essentials.balancetop
            - essentials.eco
            - essentials.pay
            - essentials.afk
            - essentials.help
            - essentials.help.*
            - essentials.list
            - essentials.mail
            - essentials.mail.send
            - essentials.msg
            - essentials.msg.*
            - essentials.rules
            - essentials.clearinventory
            - essentials.spawn
            - essentials.back.ondeath
            - essentials.delhome
            - essentials.home
            - essentials.delhome
            - essentials.sethome.multiple.unlimited
            - essentials.sethome
            - essentials.tpa
            - essentials.world.*
            - essentials.tpaccept
            - essentials.tpdeny
            - essentials.warp.*
            - ChestShop.shop.create
            - ChestShop.shop.buy
            - ChestShop.shop.sell
            - lwc.protect
        Freebuild:
            permissions:
            - worldedit.*
        Architect:
            prefix: '&2[Architect]&f '
            permissions:
            - WirelessRedstone.commands.wrremove
            - WirelessRedstone.commands.help
            - WirelessRedstone.commands.wrlist
            - WirelessRedstone.commands.wri
            - WirelessRedstone.commands.wrc
            - WirelessRedstone.commands.wrt
            - WirelessRedstone.commands.wrr
            - WirelessRedstone.createsign
        Moderator:
            prefix: '&1[Mod]&f '
            permissions:
            -
        Admin:
            prefix: '&c[Admin]&f '
            permissions:
            - 
     
    micrlink likes this.
  3. Offline

    micrlink

    Thank you very much. Works perfectly now.

    one more question.
    how do i add users to the different groups?

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

    HollowCube

    Code:
    users:
        YourPlayerName:
            group:
            - ExampleGroup
            permissions:
            - example.example
    Replace 'YourPlayerName' with the player's username, 'ExampleGroup' with the group you want the player to be in, and 'example.example' with any extra permissions you wish to give the player. If you don't want to give any extra permissions use the code below:

    Code:
    users:
        YourPlayerName:
            group:
            - ExampleGroup
     
  5. Offline

    micrlink

    thanks guys. Very helpful
     
  6. Offline

    Magi1053

    or you can do it ingame or from console:
    • pex user <user> group set <group> [world]​
    • pex user <user> group add <group> [world] [lifetime]​
    (lifetime in seconds)​
     
  7. Offline

    micrlink

    None of the permissions are working and neither are the prefix's

    permissions.yml

    Code:
    groups:
        Citizens:
            default: true
            prefix: '&6[Citizens]&c '
            suffix: '&f'
            permissions:
            - essentials.kit
            - reload
            - essentials.kit.*
            - essentials.balance
            - essentials.balance.others
            - essentials.balancetop
            - essentials.eco
            - essentials.pay
            - essentials.afk
            - essentials.help
            - essentials.help.*
            - essentials.list
            - essentials.mail
            - essentials.mail.send
            - essentials.msg'
            - essentials.msg.*
            - essentials.rules
            - essentials.clearinventory
            - essentials.spawn
            - essentials.back
            - essentials.delhome
            - essentials.home
            - essentials.sethome.multiple.unlimited'
            - essentials.sethome
            - essentials.home.set
            - essentials.set.home
            - essentials.tpa
            - essentials.teleport.tpa
            - essentials.world.*
            - essentials.tpaccept
            - essentials.tpdeny
            - essentials.warp
            - multiverse.teleport.self.*
            - ChestShop.shop.create
            - ChestShop.shop.buy
            - ChestShop.shop.sell
            - lwc.protect
        Survival:
            permissions:
            - essentials.kit
            - essentials.kit.*
            - essentials.balance
            - essentials.balance.others
            - essentials.balancetop
            - essentials.eco
            - essentials.pay
            - essentials.afk
            - essentials.help
            - essentials.help.*
            - essentials.list
            - essentials.mail
            - essentials.mail.send
            - essentials.msg
            - essentials.msg.*
            - essentials.rules
            - essentials.clearinventory
            - essentials.spawn
            - essentials.back.ondeath
            - essentials.delhome
            - essentials.home
            - essentials.delhome
            - essentials.sethome.multiple.unlimited
            - essentials.sethome
            - essentials.tpa
            - essentials.world.*
            - essentials.tpaccept
            - essentials.tpdeny
            - essentials.warp.*
            - ChestShop.shop.create
            - ChestShop.shop.buy
            - ChestShop.shop.sell
            - lwc.protect
        Freebuild:
            permissions:
            - essentials.*
        Mod:
            default: false
            prefix: '&1[Mod]&c '
            suffix: '&f'
            inherirance:
            - Citizens
            permissions:
            -
        Architect:
            permissions:
            - WirelessRedstone.commands.wrremove
            - WirelessRedstone.commands.help
            - WirelessRedstone.commands.wrlist
            - WirelessRedstone.commands.wri
            - WirelessRedstone.commands.wrc
            - WirelessRedstone.commands.wrt
            - WirelessRedstone.commands.wrr
            - WirelessRedstone.createsign
            - essentials.tp
            inheritance:
            - citizens
            - mod
            prefix: '&2[Architect]&c '
            suffix: '&f'
        Admin:
            permissions:
            - permissions.manage.*
            - '*'
            inheritance:
            - mod
            - citizens
            - architect
            prefix: '&c[Admin]&c '
            suffix: '&f'
     
    users:
        micrlink:
            group:
            - Admin
            permissions:
            - essentials.*
        Kingdy:
            groups:
            - Architect
            permissions:
            -
        iMown:
            groups:
            - Architect
            permissions:
            -
        ARCFIGHTER5595:
            groups:
            - Architect
            permissions:
            -
        THEEPICVOID5595
            groups:
            - mod
            permissions:
            -
        Coolspy21
            groups:
            - Mod
            permissions:
            -
     
Thread Status:
Not open for further replies.

Share This Page