• Es freut uns dass du in unser Minecraft Forum gefunden hast. Hier kannst du mit über 130.000 Minecraft Fans über Minecraft diskutieren, Fragen stellen und anderen helfen. In diesem Minecraft Forum kannst du auch nach Teammitgliedern, Administratoren, Moderatoren , Supporter oder Sponsoren suchen. Gerne kannst du im Offtopic Bereich unseres Minecraft Forums auch über nicht Minecraft spezifische Themen reden. Wir hoffen dir gefällt es in unserem Minecraft Forum!

Essentials Chat

Status
Für weitere Antworten geschlossen.
D

deleted21197

Guest
Hallo zusmammen,

ich habe ein Problem mit dem Chatformat auf meinem Server, ich benutze Essentials und EssentialsChat in Verbindung mit Permission***.
Mein Problem ist nun, wenn ich zum Beispiel wenn ich mir Items per Befehl gebe oder eine /msg schicke und noch bei anderen Befehlen wie /list immer vor dem Spielernamen die Gruppe steht.
Ich möchte aber nur, dass der Spielername beim chatten und nicht bei Befehlen kommt.
Beispiel:
Giving 1 of stone to [Owner]hacky998.
Nun möchte ich, wie oben beschrieben, dass das "[Owner]" nicht dabei steht!

Mit freundlichen Grüßen
hacky998
 

nickless

Vorarbeiter
Registriert
26 August 2011
Beiträge
228
Diamanten
1
Lass mal Essentials den Prefix machen nicht Pex also trags in Essentials so ein:
Code:
############################################################
# +------------------------------------------------------+ #
# |                   EssentialsChat                     | #
# +------------------------------------------------------+ #
############################################################

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 (!)
  # Or 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.
  # If set to the default chat format which "should" be compatible with ichat.
  # For more information of chat formatting, check out the wiki: [url]http://ess.khhq.net/wiki/Chat_Formatting[/url]  

  #format: '{DISPLAYNAME}: {MESSAGE}'
  #format: '&7[{GROUP}]&f {DISPLAYNAME}&7:&f {MESSAGE}'

  group-formats:
    Spieler: '{WORLDNAME} &9[{GROUP}] &f {DISPLAYNAME}: {MESSAGE}'
    VIP: '{WORLDNAME} &2[{GROUP}] &f {DISPLAYNAME}: {MESSAGE}'
    Supporter: '{WORLDNAME} &1[{GROUP}]&f{DISPLAYNAME}: {MESSAGE}'
    Special: '{WORLDNAME} &0[{GROUP}]&f {DISPLAYNAME}: {MESSAGE}'
    GameAdmin: '{WORLDNAME} &3[{GROUP}]&f {DISPLAYNAME}: {MESSAGE}'
    Architekt: '{WORLDNAME} &6[{GROUP}]&f {DISPLAYNAME}: {MESSAGE}'
    Owner: '{WORLDNAME} &4[{GROUP}]&f {DISPLAYNAME}: {MESSAGE}'


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

und aus der Permissions.yml machste die zeilen raus:
Code:
    prefix: '&9[Spieler]&f'
    prefix: '&2[VIP]&f'
    prefix: '&1[Supporter]&f'
    prefix: '&0[Special]&f'
    prefix: '&6[Architekt]&f'
    prefix: '&3[GameAdmin]&f'
    prefix: '&4[OWNER]&f'
bzw schreibst vor die Zeilen eine #

So nu is mein Essen angebrannt :(
 
Status
Für weitere Antworten geschlossen.
Oben