Chat Manager Color Prefix Problem

Discussion in 'Bukkit Help' started by petur170, Oct 23, 2011.

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

    petur170

    Hello, i'm using Chat Manager and PermissionsEX and i want to make it so that each group has a different colored name, but it doesn't work. (Well it does, but not the correct color ex: God is supposed to be gold, but its gray.)
    Here is Chat Manager's config.yml:
    Code:
    enable: true
    ranged-mode: false
    chat-range: 100.0
    message-format: '%prefix%player: &f%message'
    global-message-format: '%prefix%player: &f%message'
    display-name-format: '%prefix%player: &f%message'
    
    Here is PermissionsEX's permissions.yml
    Code:
    users:
        petur170:
            groups: God
            permissions:
        iSparkz:
            groups: Member
            info:
            permissions:
        Rocket:
            groups: Member
            permissions:
    groups:
        Default:
            default: true
            info:
                prefix: '&7'
                suffix: '&f'
                build: false
            permissions:
                - essentials.who
            prefix: '&7'
        Member:
            default: false
            permissions:
                - essentials.who
                - essentials.tpa
                - modifyworld.*
                - -modifyworld.blocks.interact.23
            prefix: '&a'
        Moderator:
            default: false
            inheritance:
                - Default
            permissions:
                - essentials.tpahere
                - joker.*
                - -joker.wolf
            prefix: '&b'
        Admins:
            default: false
            inheritance:
                - Moderator
            permissions:
                - permissions.*
                - -essentials.tp
                - -essentials.tphere
                - -essentials.fireball
                - -multiworld.*
            prefix: '&c'
        God:
            default: false
            permissions:
                - permissions.*
            prefix: '&6'
     
  2. Offline

    Karlkorv

    Use chatter, much better than chatmanager
     
  3. Offline

    petur170

    OK i'm using chatter, but when i try it, the name always ends up gray (i try different colors) and theres always the normal bukkit text right below it ex:

    petur170: hi
    <petur170> hi

    Here is my config for chatter
    Code:
    # Chatter config[/COLOR][/COLOR][/COLOR][/COLOR]
    
    [COLOR=rgb(0, 0, 0)]censor-list: [****,****][/COLOR]
    [COLOR=rgb(0, 0, 0)]nether-name: +world nether[/COLOR]
    [COLOR=rgb(0, 0, 0)]log-everything: false[/COLOR]
    [COLOR=rgb(0, 0, 0)]date-format: HH:mm:ss[/COLOR]
    [COLOR=rgb(0, 0, 0)]message-format: '&$prefix+name:&f +message'[/COLOR]
    [COLOR=rgb(0, 0, 0)]text-wrapping: true[/COLOR]
    [COLOR=rgb(0, 0, 0)]me-format: '* +name +message'[/COLOR]
    [COLOR=rgb(0, 0, 0)]name-format: '&$prefix +name'

    and my updated permissionsex one:
    Code:
    [/COLOR]
    [COLOR=rgb(0, 0, 0)]users:     petur170:         groups: God         permissions:     iSparkz:         groups: Member         info:         permissions:     Rocket:         groups: Member         permissions: groups:     Default:         default: true         permissions:             - essentials.who         prefix: '7'     Member:         default: false         permissions:             - essentials.who             - essentials.tpa             - modifyworld.*             - -modifyworld.blocks.interact.23         prefix: 'a'     Moderator:         default: false         inheritance:             - Default         permissions:             - essentials.tpahere             - joker.*             - -joker.wolf         prefix: 'b'     Admins:         default: false         inheritance:             - Moderator         permissions:             - permissions.*             - -essentials.tp             - -essentials.tphere             - -essentials.fireball             - -multiworld.*         prefix: 'c'     God:         default: false         permissions:             - permissions.*         prefix: '6'

    Thanks[/code]
    [/COLOR]
     
  4. Offline

    Karlkorv

    hmm... im not really a coder, what other plugins do you use?
     
  5. Offline

    dralletje

    I know the problem for the gray thing :)
    give me a list of plugins you have so I can fix the double display thing.
    but anyway the gray problem is that the prefix' of that the prefixes of all the groups are not good located :(
    only the default group has a prefix on the right place, but also one on the wrong.
    all the $variables have to be in the info group.
    so like this:
    Code:
    info:
        prefix: 'a'
     
  6. Offline

    petur170

    Still doesn't work. The text is white now. my new permissions.yml:
    Code:
    users:
        petur170:
            groups: God
            permissions:
        ******:
            groups: Member
            info:
            permissions:
        ******:
            groups: Member
            permissions:
    groups:
        Default:
            default: true
            permissions:
                - essentials.who
            info:
                prefix: '7'
        Member:
            default: false
            permissions:
                - essentials.who
                - essentials.tpa
                - modifyworld.*
                - -modifyworld.blocks.interact.23
            info:
                prefix: 'a'
        Moderator:
            default: false
            inheritance:
                - Default
            permissions:
                - essentials.tpahere
                - joker.*
                - -joker.wolf
            info:
                prefix: 'b'
        Admins:
            default: false
            inheritance:
                - Moderator
            permissions:
                - permissions.*
                - -essentials.tp
                - -essentials.tphere
                - -essentials.fireball
                - -multiworld.*
            info:
                prefix: 'c'
        God:
            default: false
            permissions:
                - permissions.*
            info:
                prefix: '6'
     
  7. Offline

    Darq

  8. Offline

    dralletje

    sorry sorry sorry sorry!
    the prefix should be in the options node.
    so like this:
    Code:
            options:
                prefix: '7'
    And use chatter, that is my opinion :)
     
  9. Offline

    Jozeth

    My permissions file (a bit edited)
    Code:
    groups:
        Member:
            prefix: '&5[&5Member&5]&7 '
            default: true
            permissions:
            options:
                rank: '100'
        Mod:
            prefix: '&4[&4Mod&4]&7 '
            permissions:
            options:
                rank: '30'
        Admin:
            prefix: '&e[&eAdmin&e]&7  '
            permissions:
            options:
                rank: '20'
        Co-Owner:
            prefix: '&3[&3Co-Owner&3]&7 '
            permissions:
            options:
                rank: '10'
        Owner:
            prefix: '&3[&3Owner&3]&7 '
            permissions:
            - admincmd.*
            - '*'
    users:
        <PlayerName>:
            group:
            - Owner
     
  10. Offline

    petur170

    I am using chatter :p that's why i posted on the thread

    Edit: now it just appears as $7petur170 and theres still the normal text below
     
Thread Status:
Not open for further replies.

Share This Page