Color tag showing in chat via SendHelpText
Since the last game update the help text shows the "hex' code instead of the color at the beginning of the text.
Stupid question, but what HelpText?^^ Screen/Example?
The only color tags in this plugin use the <color=#hex> format, not update or changes necessary.
Its what you get when you type help :)
Help text
This plugin only supplies the help to your help plugin, what it has formatted is correct.
In response to Wulf ():
This plugin only supplies the help to your help plugin, what it has formatted is correct.
So the fact that it is showing the hex code instead of the actual color (which it did before update) is correct ?
In response to pookins ():
So the fact that it is showing the hex code instead of the actual color (which it did before update)...
No, but I actually see why it is doing it now; it's using GetMsg, so I think it's trying to get a message with that as the key.

Changing:
SendReply(player, GetMsg("<size=18>Remover Tool</size> by <color=#ce422b>Reneb</color>\n<color=\"#ffd479\">/remove optional:TimerInSeconds</color> - Activate/Deactivate the Remover Tool, You will need to have no highlighted items in your belt bar.", player));

To:

SendReply(player, "<size=18>Remover Tool</size> by <color=#ce422b>Reneb</color>\n<color=\"#ffd479\">/remove optional:TimerInSeconds</color> - Activate/Deactivate the Remover Tool, You will need to have no highlighted items in your belt bar.";


Should fix it.