Using Mention shows color in plain textFixed

If I type @Willow
I get @#55AAFFWillow

I believe my config is default

{
  "Group Color To Use (Title/Username/Message)": "Username",
  "Alert to play": "assets/prefabs/locks/keypad/effects/lock.code.unlock.prefab",
  "Delay Between Alert Sounds (Seconds)": 0.0,
  "Everyone Ping Color": "#55aaff"
}​

Better Chat filters the styling at the moment, which this plugin uses.

Thanks. It appears from Better Chat's side this is due to some sort of security issue?

Not sure this is the best solution, but I changed

string newText = $"@[{highlightColour}]{highlightText}[/#]";

to 

string newText = $"@{highlightText}";

To remove the color.

when in chat you try to ping someone with @(name of player) and it comes up @#c44dd6(there name)/#    This only started happening as soon as wipe occurred today at 2pm. The plugin was never touched and has always worked til now. Anyone else having issues?

Which plugin are you referring to?

we have better chat and better chat mentions

Moved to the correct forum section.

So where is the correct forum section exactly and how do i get an answer on how to fix since death never answers his plugin issues?

Morganaraven1

So where is the correct forum section exactly and how do i get an answer on how to fix since death never answers his plugin issues?

There is a fixed mentioned in previous posts.

I'm having the same color issue. It no longer tags and pings the player, because it adds # before the name and /# after the name turning @player into @#player/#

bX7bJ6OwpzFFnwS.png Bumfuzzler

Thanks. It appears from Better Chat's side this is due to some sort of security issue?

Not sure this is the best solution, but I changed

string newText = $"@[{highlightColour}]{highlightText}[/#]";

to 

string newText = $"@{highlightText}";

To remove the color.

Ok this worked, but no there's no more username matching color :(

8aoZQArrCLMuPIY.png Wulf

There is a fixed mentioned in previous posts.

I would call that a workaround not a fix. It removes the customized color scheme which is the main point of BetterChat.

Just for mentions though so not a huge deal. Some active servers use it a good bit however.

atAamoUb7QOFwuC.jpg Jbird

I would call that a workaround not a fix. It removes the customized color scheme which is the main point of BetterChat.

Just for mentions though so not a huge deal. Some active servers use it a good bit however.

That would be correct.

this is a simple fix....someone needs to make the change other than Death because well....

Change this:

string newText = $"@[{highlightColour}]{highlightText}[/#]";

 

TO THIS:

string newText = $"@<color={highlightColour}>{highlightText}</color>";

Well damn half a day late haha. I was coming to share the fix, but there it is already! Cheers @codepimp1234

Fix above @Bumfuzzler@Covfefe (couldn't tag Morganaraven1 but hopefully you see it soon)

string newText = $"@<color={highlightColour}>{highlightText}</color>";
Locked automatically