If the file encoding utf-8 is not working color code "©".
In utf-8 code "©" = 194. And to be 169.
I use the code lua
1
2
3
2
3
local CC = string.char (169) msg (CC.. "255000000 Hello, world!") msg (CC.. "255150030" .. string.byte ('©'))
have any ideas? or is it a bug?