Problem/Bug Towny is only editing chat for one group.

Discussion in 'Bukkit Help' started by Solarbyte, Aug 26, 2015.

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

    Solarbyte

    I want Towny to show the Channel Tag, nothing else. That part is solved.

    However, these changes only show up for one specific rank. My Trusted rank has the [g] to show they're talking in global chat, but none of the other ranks have that, even my Member rank, that has the exact same permissions as Trusted, just a different prefix.

    Towny chat config:

    Code:
     
      # Spam_time set the minimum time between messages to be flagged as spam
      spam_time: 0.5
     
      # If using our updated HeroicDeath.jar and craftIRC 3.1 (dev), you can
      #configure what IRC channels you want death messages relayed to.
      HeroicDeathToIRC:
        enabled: true
        # comma delimited list of craftIRC channel tags 'admin,blah,blah'.
        craftIRCTags: 'admin'
    
      channel_formats:
        # This is the format which will be used for GLOBAL chat/channels.
        # This is also the format used when you have modify_chat.enable: true, but use other plugins to handle chat.
        global: '{channelTag}{modplayername}&f:{msgcolour} {msg}'
        # TOWN channel types.
        town: '{channelTag}{townycolor}{permprefix}{townyprefix}{playername}{townypostfix}{permsuffix}&f:{msgcolour} {msg}'
        # NATION channel types.
        nation: '{channelTag}{towntagoverride}{townycolor}{permprefix}{townyprefix}{playername}{townypostfix}{permsuffix}&f:{msgcolour} {msg}'
        # DEFAULT channel types.
        default: '{channelTag}{playername}&f:{msgcolour} {msg}'
       
      tag_formats:
          world: '&f[&f%s&f] '
          town: '&f[&3%s&f] '
          nation: '&f[&e%s&f] '
          # First %s is the nation tag, second is the town tag.
          both: '&f[&6%s&f|&3%s&f] '
         
        # Chat colours
      colour:
        king: '&6'
        mayor: '&b'
        resident: '&f'
       
      modify_chat:
        # This is used for when you don't have another plugin to format chat.
        # or you want some other plugin to handle open chat, but want Towny formatting.
        # It will cause Towny to overwrite any other plugins alterations to the format.
        enable: 'true'
        # If true the chat formats will be read from below to allow per world formatting.
        # These can then be altered individually.
        per_world: 'false'
       
      worlds:
        'world_the_end':
          global: '{channelTag} {worldname}{townytagoverride}{townycolor}{permprefix}{group} {townyprefix}{modplayername}{townypostfix}{permsuffix}&f:{msgcolour} {msg}'
          town: '{channelTag} {townycolor}{permprefix}{townyprefix}{playername}{townypostfix}{permsuffix}&f:{msgcolour} {msg}'
          nation: '{channelTag}{towntagoverride}{townycolor}{permprefix}{townyprefix}{playername}{townypostfix}{permsuffix}&f:{msgcolour} {msg}'
          default: '{channelTag} {permprefix}{playername}{permsuffix}&f:{msgcolour} {msg}'
        'world':
          global: '{channelTag} {worldname}{townytagoverride}{townycolor}{permprefix}{group} {townyprefix}{modplayername}{townypostfix}{permsuffix}&f:{msgcolour} {msg}'
          town: '{channelTag} {townycolor}{permprefix}{townyprefix}{playername}{townypostfix}{permsuffix}&f:{msgcolour} {msg}'
          nation: '{channelTag}{towntagoverride}{townycolor}{permprefix}{townyprefix}{playername}{townypostfix}{permsuffix}&f:{msgcolour} {msg}'
          default: '{channelTag} {permprefix}{playername}{permsuffix}&f:{msgcolour} {msg}'
        'world_nether':
          global: '{channelTag} {worldname}{townytagoverride}{townycolor}{permprefix}{group} {townyprefix}{modplayername}{townypostfix}{permsuffix}&f:{msgcolour} {msg}'
          town: '{channelTag} {townycolor}{permprefix}{townyprefix}{playername}{townypostfix}{permsuffix}&f:{msgcolour} {msg}'
          nation: '{channelTag}{towntagoverride}{townycolor}{permprefix}{townyprefix}{playername}{townypostfix}{permsuffix}&f:{msgcolour} {msg}'
          default: '{channelTag} {permprefix}{playername}{permsuffix}&f:{msgcolour} {msg}'
    Group manager groups:
    Code:
    groups:
      Default:
        default: true
        permissions:
        - -bukkit.command.kill
        - serversigns.use.*
        - -worldedit.*
        - -essentials.nick
        - -essentials.chat.color
        inheritance:
        - g:groupmanager_default
        - g:bukkit_default
        - g:essentials_default
        - g:towny_default
        info:
          prefix: ' &8[Guest] '
          build: false
          suffix: ''
      Member:
        default: false
        permissions:
        - -worldedit.*
        - -essentials.nick
        - -essentials.chat.color
        - auction.start
        - auction.bid
        - silkspawners.place.*
        - silkspawners.silkdrop.*
        inheritance:
        - default
        - g:essentials_builder
        - g:towny_builder
        info:
          prefix: ' &a[Member] '
          build: true
          suffix: ''
      Trusted:
        default: false
        permissions:
        - -worldedit.*
        - -essentials.nick
        - -essentials.chat.color
        - auction.start
        - auction.bid
        - silkspawners.place.*
        - silkspawners.silkdrop.*
        inheritance:
        - default
        - g:essentials_builder
        - g:towny_builder
        info:
          prefix: ' &2[Trusted] '
          build: true
          suffix: ''
      Donor:
        default: false
        permissions:
        - auction.start
        - auction.bid
        - -worldedit.*
        - -essentials.chat.color
        - silkspawners.place.*
        - silkspawners.silkdrop.*
        inheritance:
        - default
        - g:essentials_builder
        - g:towny_builder
        info:
          prefix: ' &5[Donor] '
          build: true
          suffix: ''
      Platinum:
        default: false
        permissions:
        - auction.start
        - auction.bid
        - -worldedit.*
        - -essentials.chat.color
        - silkspawners.place.*
        - silkspawners.silkdrop.*
        inheritance:
        - default
        - g:essentials_builder
        - g:towny_builder
        info:
          prefix: ' &7[Donor] '
          build: true
          suffix: ''
      Diamond:
        default: false
        permissions:
        - auction.start
        - auction.bid
        - -worldedit.*
        - -essentials.chat.color
        - silkspawners.place.*
        - silkspawners.silkdrop.*
        inheritance:
        - default
        - g:essentials_builder
        - g:towny_builder
        info:
          prefix: ' &b[Donor] '
          build: true
          suffix: ''
      Trial:
        default: false
        permissions:
        - -worldedit.*
        - essentials.nick
        - -essentials.chat.color
        - auction.start
        - auction.bid
        - silkspawners.place.*
        - silkspawners.silkdrop.*
        - mutemanager.mute
        - mutemanager.unmute
        - mutemanager.mutelist
        - mutemanager.mutenotify
        - mutemanager.unmotenotify
        - banhammer.kick
        inheritance:
        - default
        - g:essentials_builder
        - g:towny_builder
        info:
          prefix: ' &3[Trial Mod] '
          build: true
          suffix: ''
      Moderator:
        default: false
        permissions:
        inheritance:
        - builder
        - g:groupmanager_moderator
        - g:bukkit_moderator
        - g:essentials_moderator
        - g:towny_moderator
        - g:vanish_moderator
        info:
          prefix: ' &d[Moderator] '
          build: true
          suffix: ''
      Admin:
        default: false
        permissions:
        inheritance:
        - moderator
        - g:groupmanager_admin
        - g:bukkit_admin
        - g:essentials_admin
        - g:towny_admin
        - g:vanish_admin
        info:
          prefix: ' &c[Admin] '
          build: true
          suffix: ''
      Boss:
        default: false
        permissions:
        - '*'
        - -vanish.effects.*
        - +vanish.effects.toggle.all
        inheritance:
        - admin
        info:
          prefix: ' &0[Big Boss] '
          build: true
          suffix: ''
      Owner:
        default: false
        permissions:
        - '*'
        - -vanish.effects.*
        - +vanish.effects.toggle.all
        inheritance:
        - admin
        info:
          prefix: ' &9[Owner] '
          build: true
          suffix: ''
    
     
  2. Offline

    LlmDl

    Pastebin.com the townyperms.yml and your globalgroups.yml
     
  3. Offline

    Solarbyte

  4. Offline

    LlmDl

    Strange, your players all have access to the general channel via townyperms.yml's nomad group.

    Join the Towny IRC if you want to troubleshoot this further. It's linked in my first post's signature.
     
Thread Status:
Not open for further replies.

Share This Page