Permissions Not Working?

Discussion in 'Bukkit Help' started by jafa1001fay, Apr 4, 2011.

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

    jafa1001fay

    I recently made a CraftBukkit server, and downloaded permissions. Everything is fine, except that the World.yml isn't working in permissions. I add myself as admin, make an asterisks, and nothing works.

    Here are pictures to help you, help me out:

    Craft Bukkit Folder:

    [​IMG]

    World.yml:





    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: ''
                suffix: ''
                build: false
            inheritance:
            permissions:
                - 'foo.bar'
        Moderator:
            default: false
            info:
                prefix: ''
                suffix: ''
                build: true
            inheritance:
                - Default
            permissions:
                - 'bar.foo'
        Admin:
            default: false
            info:
                prefix: '&a'
                suffix: '&a'
                build: true
            inheritance:
            permissions:
                - '*'
    
    ##
    # Users denote which users are included in which group.
    # TheNo1Yeti is in the Admin group
    # Herpina is a member of the Moderator group but also has access
    # to the herp.derp permissions
    # Derpina is a member of the admin group but does not have access
    # to the derp.derp permission node
    # Users can also have a prefix and suffix as seen with Herpina
    ##
    users:
        drphizyjr:
            group: Admin
            permissions:
                - '*'
    




    Server.properties:
    [​IMG]



    Commands not working:

    [​IMG]

    If you guys could help me out, I would be grateful.

    19 views? No responses?

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

    Jellyfrog

    Craftbukkit version?
    Console output?

    Is that a lower or upper 'W' in your server.propertie (level-name, why use screenshots and not text???)
    Try changing the filename to world.yml if its a lower, seems like a upper tho... Dunno if it matters.
     
  3. Offline

    Godspeed

    You might need to clarify some things.

    You say nothing works, but what should be working? i don't see any plugins you are trying to give permissions to.
    In the screenshot you provided i only see you typing some jizzle in chat, no errors from commands or something.
     
  4. Offline

    jafa1001fay

    I am trying to be able to use the commands. I changed the pictures to code. The last photo isn't very helpful. It just shows that my name isn't red or anything.

    I changed the picture to code. Could you help me out?

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

    Godspeed

    It is funny that you manage to answer 2 questions for more information and give none :p

    Is the server just for yourself and some friends? or are you going to make a public server?

    If you want the basic build in commands for yourself you can just "op" yourself by adding your name to the "ops.txt" file. Then you should be able to use the commands.

    And the color in the prefix for the admin is only going to work with a chat plugin, the permission plugin alone does nothing with the prefix and suffix.
     
  6. Offline

    jafa1001fay

    The server is for me, and four friends.
     
  7. Offline

    ash243x

    im having the exact same problem since i upgraded to build 617 or when i also try build 635.

    nothing I do seems to correct the problem other than making everyone OP, which on a public server I most certainly don't want to do.

    for the person that's asking about what commands, I assume jafa means the regular built-in commands for craftbukkit. For example, I can't even use the /help command... in-game nothing gets displayed and the console just puts out a hidden message saying "<user> tried command: <whatever>" as if it was an invalid command without any explination of if there was an error or what the problem is.

    =/
     
  8. Offline

    Stormwolf

    You don't need the * under both admins and your username.

    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.
    #   Does not work for the default world.
    #  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:
    #
    #       - 'general.spawn'
    #
    #   Otherwise errors will happen!
    ##
    #   Globalized Permission settings:
    #
    #       If a permission contains periods (.) you can denote a globalized parameter:
    #
    #           - 'general.*'
    #
    #       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:
    #       - '-general.time'
    ##
    #   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: ''
                suffix: ''
                build: false
            inheritance:
            permissions:
                - 'node.here'
        Moderator:
            default: false
            info:
                prefix:
                suffix:
                build: true
            inheritance:
                - Default
            permissions:
                - 'node here'
        Admins:
            default: false
            info:
                prefix: '&a'
                suffix: '&f'
                build: true
            inheritance:
                - Moderator
            permissions:
                - '*'
    
    ##
    # Users denote which users are included in which group.
    # TheNo1Yeti is in the Admin group
    # Herpina is a member of the Moderator group but also has access
    # to the herp.derp permissions
    # Derpina is a member of the admin group but does not have access
    # to the derp.derp permission node
    # Users can also have a prefix and suffix as seen with Herpina
    ##
    users:
        drphizyjr:
            group: Admins
            permissions:
            
     
  9. Offline

    jafa1001fay

    I DOn'T MEAN THE COMMANDS YOU GET BY DEFAULT! I MEAN THE PERMISSIONS COMMANDS!

    This didn't help at all. I typed /god and it said unknown command.

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

    Stormwolf

    What plugin are you using for /god?
     
  11. Offline

    jafa1001fay

    I thought /god was part of permissions...
     
  12. Offline

    Stormwolf

    Permissions doesn't give you any commands, except /pr permissions reload. You will need other plugins to give you commands which may or may not require permissions to allow users to use those commands.
     
Thread Status:
Not open for further replies.

Share This Page