Need help with permissions

Discussion in 'Bukkit Help' started by x3ndless, Mar 17, 2011.

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

    x3ndless

    Well i have iChat and Permissions, but im having troubles using prefixes. Ive tried so many different things but it just dosent work, and my admin names always show up red but i cant changee prefixes at all. I used to just use prefixer but now thats dead so idk what to do now.

    Heres a list of my plugins
    Afraidskills
    Craftbook
    Crowdcontrol
    Essentials(no essentials chat or groups)
    Fakemessage
    ichat
    izone
    lwc
    monsterhunt
    permissions
    persistent
    world edit
    world guard

    thank you for helping
    Sincerely,
    x3ndless
     
  2. Offline

    Stormwolf

    Please post your permissions config file
     
  3. Offline

    x3ndless

    ok here it is

    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: '[Member]'
                suffix: ''
                build: false
            inheritance:
            permissions:
                - 'foo.bar'
        Moderator:
            default: false
            info:
                prefix: '#1[Moderator]'
                suffix: ''
                build: true
            inheritance:
                - Default
            permissions:
                - 'bar.foo'
        Admins:
            default: false
            info:
                prefix: '#4[Admin]'
                suffix: ''
                build: true
            inheritance:
            permissions:
                - '*'
        Owners:
            default: false
            info:
                prefix: '#9[Owner]'
                suffix: ''
                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:
        x3ndless:
            group: Owners
            permissions:
                - '*'
        x3ndless1:
            group: Admins
            info:
                prefix: '#2Owner#1'
            permissions:
    used a online yaml parser so i think its good
     
  4. Offline

    Stormwolf

    You are showing #4 for colors I'm not sure that works, as far as I know it should be something like &4 or ยง4

    If that doesn't do it, check your iChat config too it should be something like:
    Code:
    message-format: '+prefix+name+suffix : +message'
     
  5. Offline

    x3ndless

    ichat iddnt come with config
     
  6. Offline

    Stormwolf

  7. Offline

    x3ndless

    recent craftbukkit and latest ichat still dosent give me a config
     
  8. Offline

    Stormwolf

    Make a folder named iChat in your plugin directory and put a file named config.yml in there containing
    Code:
    message-format: '+prefix+name+suffix : +message'
     
Thread Status:
Not open for further replies.

Share This Page