Does MUSHclient support truecolor like from Evennia? Are there any plugins that would enable support programmatically? Thanks for the help!
Truecolor plugin
Posted by BrainFRZ on Mon 30 Dec 2024 10:27 AM — 3 posts, 1,909 views.
See: https://www.evennia.com/docs/1.x/Concepts/Colors.html
MUSHclient supports ANSI and Xterm256 colours.
Mind.. MUSHclient is fully capable of using its scripting to "intercept" data coming from Evennia, reading the Truecolor codes from inside the results, and using its own text coloring features to then display the result in the correct colors, but not sure if this would create issues with firing other triggers, since you would then have to pass the remaining data back to the client to trigger them...
Yeah, to support this correctly, even via plugin, I think would require adding a color function that sets the current foreground and background for the text, instead of, "displaying text.", in the plugin itself using colournote... Might be useful... But, some enterprising person might just find it easier, in general, to implement XTerm Truecolor and let Nick merge it in when its working.
Yeah, to support this correctly, even via plugin, I think would require adding a color function that sets the current foreground and background for the text, instead of, "displaying text.", in the plugin itself using colournote... Might be useful... But, some enterprising person might just find it easier, in general, to implement XTerm Truecolor and let Nick merge it in when its working.