Aide sur le plugin essential

GamerOfEnder

Aventurier
27 Juin 2017
12
1
4
30
Bonjour,
je me suis créé un serveur avec des plugins et un plugin essential et je voudrais de l'aide par rapport au tchat car quand je me connecte la couleur par défaut de mon pseudo est rouge et quand je fais /nick &fGamerOfEnder par exemple ça me met le pseudo en blanc avec un ~ rouge devant je voudrais savoir comment enlever ça (serveur avec bukkit)
merci pour les réponses je suis nouveau!
 
Dernière édition:

Sixela

Développeur multi-langage
9 Mars 2015
190
40
85
France, Languedoc-Roussillion
Étapes pour enlever ou modifier le tilde (~) qui précède un pseudonyme lors qu'il est modifié:
1. Aller dans le dossier chemin_serveur/plugins/Essentials et ouvrir config.yml.
2. Trouver l'entrée nickname-prefix, et changer '~' par ''. Ceci enlèvera le title qui précède le psedonyme lors qu'il est modifié.
2-bis. Trouver l'entrée ops-name-color et changer '4' par une couleur choisie (table des couleurs et formats ici, ne pas ajouter &).
3. Exécuter la commande /essentials reload pour recharger la configuration de Essentials.
4. Si le pseudonyme contient toujours le tilde (~), redémarrer le serveur et vérifier si un plugin ne modifie pas celui-ci.
 
  • J'aime
Reactions: GamerOfEnder

GamerOfEnder

Aventurier
27 Juin 2017
12
1
4
30
"
# This section requires the EssentialsChat.jar to work.

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} &f{DISPLAYNAME}&7:&r {MESSAGE}'
# Admins: '{WORLDNAME} &c[{GROUP}]&r {DISPLAYNAME}&7:&c {MESSAGE}'

# If you are using group formats make sure to remove the '#' to allow the setting to be read." je n'ai que ceci et le nickname-prefix n'est pas présent :/
 

GamerOfEnder

Aventurier
27 Juin 2017
12
1
4
30
je ne sais pas si c'est ça
############################################################
# +------------------------------------------------------+ #
# | EssentialsChat | #
# +------------------------------------------------------+ #
############################################################

# This section requires the EssentialsChat.jar to work.

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} &f{DISPLAYNAME}&7:&r {MESSAGE}'
# Admins: '{WORLDNAME} &c[{GROUP}]&r {DISPLAYNAME}&7:&c {MESSAGE}'

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

Sixela

Développeur multi-langage
9 Mars 2015
190
40
85
France, Languedoc-Roussillion
Merci (encore une fois) de mettre ta configuration entre balises [wcode]< remplacer wcode par code et mettre la configuration ici >[/wcode]. Par ailleurs, ce n'est pas la bonne section de la configuration; les entrées sont forcément au début de la configuration. Exemple de début de configuration:
Code:
############################################################
# +------------------------------------------------------+ #
# |                       Notes                          | #
# +------------------------------------------------------+ #
############################################################

# If you want to use special characters in this document, such as accented letters, you MUST save the file as UTF-8, not ANSI.
# If you receive an error when Essentials loads, ensure that:
#   - No tabs are present: YAML only allows spaces
#   - Indents are correct: YAML hierarchy is based entirely on indentation
#   - You have "escaped" all apostrophes in your text: If you want to write "don't", for example, write "don''t" instead (note the doubled apostrophe)
#   - Text with symbols is enclosed in single or double quotation marks

# If you have problems join the Essentials help support channel: http://tiny.cc/EssentialsChat

############################################################
# +------------------------------------------------------+ #
# |                 Essentials (Global)                  | #
# +------------------------------------------------------+ #
############################################################

# A color code between 0-9 or a-f. Set to 'none' to disable.
ops-name-color: '4'

# The character(s) to prefix all nicknames, so that you know they are not true usernames.
nickname-prefix: '~'

# The maximum length allowed in nicknames. The nickname prefix is included in this.
max-nick-length: 15

# Disable this if you have any other plugin, that modifies the displayname of a user.
change-displayname: true
 
  • J'aime
Reactions: GamerOfEnder