Permissions Help

Discussion in 'Bukkit Help' started by XZeenon, Aug 4, 2011.

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

    XZeenon

    I'm using Permissions 3.0.
    Would someone please be able to upload their already finished Permissions folder please? I want to use it as an example because I'm not entirely sure of what it should look like. So please, I ask anyone to upload their "plugins/Permissions" folder.
    I'd appreciate it greatly.
    Everytime someone tries to help me, it just doesn't work, I want to try someone else's already configured permissions.
    Thanks!
     
  2. Permissions 3.1.6?2.7? PermissionsEx? PermissionsBukkit? There are too many out there atm, which one do you mean?

    Here are my 2.7 Permissions but they should work for 3.16 aswell, this part would be the world part

    Code:
    # System is no longer used, but may become used in the future
    # Copies is for multiple-world support
    #   Put the name of the world you wish for it to be a clone of, otherwise leave it empty.
    #   If this file is for your default world (the one in server.properties) then you must
    #   leave copies blank.
    #  Example: copies: Derp    -  This will clone the permissions of the world Derp
    #
    # Make sure to rename this file to the name of the world that is in sever.properties under
    # level-name.  So if it is level-name: world  then this should be world.yml and in the
    # plugins/Permissions directory (ie. plugins/Permissions/world.yml)
    #
    # NOTE: Do not use tabs while editing this document.  Use only spaces.  A good way to avoid
    # doing this is to use Notepad++ and replace the tab with 4 spaces.
    plugin:
        permissions:
            system: default
            copies:
    
    ##
    # AntiBuild is included with this.  To disable a group from being able to build 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 contain inheritance.
    #   To make a group inherit the permissions from another
    #   group simply place the groups name in the "inheritance:" like so:
    #
    #   Example:
    #       inheritance:
    #           - Default
    ##
    #   All permissions including the asterisks must be placed in single quotes.
    #   like so:
    #
    #       - 'foo.bar'
    #
    #   Otherwise errors will happen!
    ##
    #   Globalized Permission settings:
    #
    #       If a permission contains periods (.) you can denote a globalized parameter:
    #
    #           - 'foo.*'
    #
    #       This will allow you to use all general commands.
    #
    ##
    #   Single Asterisk denotes all commands:
    #
    #       - '*'
    #   If you give a group this permissions, do not have the group inherit any permissions
    #   from other groups.  Any users assigned to this group should NOT be given any additional
    #   permissions either.
    ##
    #   To exempt a node use the - prefix like so:
    #       - '-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.
    groups:
        Default:
            default: true
            info:
                prefix: '[Builder]'
                suffix: ''
                build: true
            inheritance:
            permissions:
                - 'commandbook.who'
                - 'commandbook.motd'
                - 'commandbook.spawn'
                - 'commandbook.say.me'
                - 'commandbook.msg'
                - 'citizens.basic.create'
                - 'citizens.basic.use.help'
                - 'citizens.basic.use.select'
                - 'citizens.basic.modify.remove'
                - 'citizens.basic.modify.rename'
                - 'citizens.basic.modify.color'
                - 'citizens.basic.modify.settext'
                - 'citizens.basic.modify.addtext'
                - 'citizens.basic.modify.resettext'
                - 'citizens.basic.modify.item'
                - 'citizens.basic.modify.armor'
                - 'citizens.basic.modify.lookat'
                - 'citizens.basic.modify.talkclose'
                - 'citizens.basic.modify.setowner'
                - 'citizens.blacksmith.use.*'
                - 'citizens.toggle.blacksmith'
                - 'citizens.toggle.trader'
                - 'citizens.toggle.wizard'
                - 'citizens.toggle.help'
                - 'citizens.trader.use.showmoney'
                - 'citizens.trader.use.help'
                - 'citizens.trader.use.list'
                - 'citizens.trader.use.trade'
                - 'falsebook.blocks.gate'
                - 'falsebook.blocks.lift'
                - 'falsebook.ic.standard'
                - 'falsebook.ic.detection'
                - 'warp.go'
                - 'warp.set'
                - 'mobarena.use.*'
                - 'mobarena.classes.*'
                - 'mobarena.arenas.*'
                - 'mailbox.user.*'
                - 'fruitful.drop.*'
                - 'bartersigns.create'
                - 'bartersigns.use'
                - 'landmarks.add'
                - 'landmarks.modify.own'
                - 'landmarks.remove.own'
                - 'duels.user.*'
                - 'bartersigns.use'
                - 'bartersigns.use'
                - 'bartersigns.use'
        VIP:
            default: false
            info:
                prefix: '[&6VIP]'
                suffix: ''
                build: true
            inheritance:
                - Default
            permissions:
                - 'commandbook.call'
                - 'commandbook.return'
        Trusted:
            default: false
            info:
                prefix: '[&aTrusted]'
                suffix: ''
                build: true
            inheritance:
                - Default
            permissions:
                - 'commandbook.call'
                - 'commandbook.return'
        Ancient:
            default: false
            info:
                prefix: '[&6Ancient&f]'
                suffix: ''
                build: true
            inheritance:
                - Default
            permissions:
                - 'commandbook.call'
                - 'commandbook.return'
                - 'magiccarpet.mc'
                - 'nocheat.flying'
        Admins:
            default: false
            info:
                prefix: '[&3Staff&f]'
                suffix: ''
                build: true
            inheritance:
            permissions:
                - '*'
    
     
  3. Offline

    Pr0Failure

    My 3.1.6 setup.
     

    Attached Files:

Thread Status:
Not open for further replies.

Share This Page