Permissions [Help]

Discussion in 'Bukkit Help' started by biokemisten, Jul 15, 2011.

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

    biokemisten

    Hi i have a huge problem with iconomy chestshop etc
    My friend tried to use my shop

    biokemisten
    5
    3:2
    DIRT

    And he got this [Shop] toy don't have permission(s) to do that.
    I am really appreciated to get some help and figure whats wrong.

    Here is my code
    Code:
    ##
    # Permissions has AntiBuild, which prevents a player from destroying/placing blocks.
    # To prevent a group of players then set the build: flag to false (build: false).
    # If you want a group to be able to build then set it to true.
    ##
    # Groups can inherit from other groups.
    #   To make a group inherit the permissions and info nodes from another
    #   group, simply place the groups name in the "inheritance:" like so:
    #
    #   Example:
    #       inheritance:
    #           - Default
    ##
    #   Wildcard Permission settings:
    #
    #       You can have wildcard nodes which encompass all nodes that match it.
    #       For example, the node "modplugin.*" matches "modplugin.kick", "modplugin.ban",
    #       "modplugin.settings.view", and so on.
    #
    ##
    #   A single asterisk means that this user/group has all permissions.
    #       - '*'
    ##
    #   Negated nodes are created by prefixing a normal node with "-".
    #   They prevent less specific wildcard nodes from matching the negated node.
    #   For example:
    #
    #   permissions:
    #       - 'foo.*'
    #       - '-foo.bar'
    #
    #   In this case, the user/group will have "foo.foo", "foo.foobar", and so on, but not "foo.bar".
    #
    ##
    #   prefix: and suffix: do not do anything on their own.  You need another outside plugin
    #   such as iChat or HeroChat in order for these to do anything.
    ##
    #
    #   For more info, visit https://github.com/TheYeti/Permissions/wiki/Guide-to-creating-YAML-configs
    #
    ##
    
    groups:
        Default:
            default: true
            info:
                prefix: ''
                suffix: ''
                build: false
            inheritance:
        Member:
            default: false
            info:
                prefix: ''
                suffix: ''
                build: true
            inheritance:
                - Default
            permissions:
                - 'warpplugin.warp'
                - 'econplugin.basic.*'
                - 'iConomyChestShop.shop.sell.*'
                - 'iConomyChestShop.shop.create*'
        Moderator:
            default: false
            info:
                prefix: ''
                suffix: ''
                build: true
            inheritance:
                - Member
            permissions:
                - 'modplugin.ban'
                - 'modplugin.kick'
                - 'modplugin.unban'
        Admins:
            default: false
            info:
                prefix: '&c'
                suffix: ''
                build: true
            inheritance:
            permissions:
                - '*'
                - 'ichat.color'
                - iConomyChestShop.shop.use
     
  2. Offline

    Jeyge

    @biokemisten
    I would actually post this in the iConomyChestShop thread as they would know more about it but with just a quick glance at the thread, it looks like you didn't give him permissions to use the shop. If he is trying to buy or sell from your shop, he will need:
    Code:
    iConomyChestShop.shop.buy - buying from shop
    iConomyChestShop.shop.sell - selling to shop
    
     
  3. Offline

    biokemisten

    Yes got it working they changed nodes to
    - ChestShop.shop.buy

    Thanks anyway :)

    regards
     
Thread Status:
Not open for further replies.

Share This Page