Problème GroupManager et Essentials

OhhRaj

Bucheron
18 Septembre 2015
10
0
12
France
Bonjour,
J'ai un serveur en local qui tourne sous Spigot 1.8.8. J'ai tous les plugins Essentials en version 2.0.1 et GroupManager en version 2.1.28. Mais j'ai un problème la variable {GROUP} dans ma configuration Essentials Chat vaut toujours 0, quel que soit mon grade. Les préfixes et suffixes n'apparaissent pas.

Ma configuration GroupManager ( ./plugins/GroupManager/world/spawn/group.yml ) Spawn est le nom de mon monde

Code:
# Group inheritance
#
# Any inherited groups prefixed with a g: are global groups
# and are inherited from the GlobalGroups.yml.
#
# Groups without the g: prefix are groups local to this world
# and are defined in the this groups.yml file.
#
# Local group inheritances define your promotion tree when using 'manpromote/mandemote'

groups:
  Default:
    default: true
    permissions:
    - -bukkit.command.kill
    inheritance:
    - g:groupmanager_default
    - g:bukkit_default
    - g:essentials_default
    - g:towny_default
    info:
      prefix: '&eDefault'
      build: false
      suffix: ''
  Builder:
    default: false
    permissions: []
    inheritance:
    - default
    - g:essentials_builder
    - g:towny_builder
    info:
      prefix: '&2Builder'
      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: '&5Moderator'
      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: '&cAdmin'
      build: true
      suffix: ''
  Owner:
    default: false
    permissions:
    - '*'
    - -vanish.effects.*
    - +vanish.effects.toggle.all
    inheritance:
    - admin
    info:
      prefix: '&4Owner'
      build: true
      suffix: ''

Ma configuration EssentialsChat ( ./plugins/Essentials/config.yml )

Code:
chat:

  # If EssentialsChat is installed, this will define how far a player's voice travels, in blocks.  Set to 0 to make all chat global.
  # Note that users with the "essentials.chat.spy" permission will hear everything, regardless of this setting.
  # Users with essentials.chat.shout can override this by prefixing text with an exclamation mark (!)
  # Users with essentials.chat.question can override this by prefixing text with a question mark (?)
  # You can add command costs for shout/question by adding chat-shout and chat-question to the command costs section."
  radius: 0

  # Chat formatting can be done in two ways, you can either define a standard format for all chat.
  # Or you can give a group specific chat format, to give some extra variation.
  # For more information of chat formatting, check out the wiki: http://wiki.ess3.net/wiki/Chat_Formatting

  #format: '<{DISPLAYNAME}> {MESSAGE}'
  format: '&7[{GROUP}]&r {DISPLAYNAME}&7:&r {MESSAGE}'

  group-formats:
     #Default: '{WORLDNAME} {DISPLAYNAME}&7:&r {MESSAGE}'
     #Admins: '{WORLDNAME} &c[{GROUP}]&rgergzergzegzergzerg {DISPLAYNAME}&7:&c {MESSAGE}'

  # If you are using group formats make sure to remove the '#' to allow the setting to be read.

Je ne comprends vraiment pas pourquoi, je table sur un problème de version ou de monde ...
Merci d'avance,
Cordialement,
OhhRaj.
 

M0dGtJS

Développeur JavaScript/Java/HTML
31 Décembre 2015
189
14
75
74
group-formats: #Default: '{WORLDNAME} {DISPLAYNAME}&7:&r {MESSAGE}' #Admins: '{WORLDNAME} &c[{GROUP}]&rgergzergzegzergzerg {DISPLAYNAME}&7:&c {MESSAGE}'

Il faut enlever les # ! Ce qui donne :

Code:
chat:

  # If EssentialsChat is installed, this will define how far a player's voice travels, in blocks.  Set to 0 to make all chat global.
  # Note that users with the "essentials.chat.spy" permission will hear everything, regardless of this setting.
  # Users with essentials.chat.shout can override this by prefixing text with an exclamation mark (!)
  # Users with essentials.chat.question can override this by prefixing text with a question mark (?)
  # You can add command costs for shout/question by adding chat-shout and chat-question to the command costs section."
  radius: 0

  # Chat formatting can be done in two ways, you can either define a standard format for all chat.
  # Or you can give a group specific chat format, to give some extra variation.
  # For more information of chat formatting, check out the wiki: http://wiki.ess3.net/wiki/Chat_Formatting

  #format: '<{DISPLAYNAME}> {MESSAGE}'
  format: '&7[{GROUP}]&r {DISPLAYNAME}&7:&r {MESSAGE}'

  group-formats:
     Default: '{WORLDNAME} {DISPLAYNAME}&7:&r {MESSAGE}'
     Admins: '{WORLDNAME} &c[{GROUP}]&rgergzergzegzergzerg {DISPLAYNAME}&7:&c {MESSAGE}'

  # If you are using group formats make sure to remove the '#' to allow the setting to be read.