I was wondering, if I put mIRC color code into .tcl file would that somehow messes up something somewhere?
For exe: If I put this "4" which is red in mIRC in .tcl file.
I ran the .tcl file and it gave me no errors, but just wondering if like something inside routine or something is messed up.
Thanks.
It's usually better to avoid embedding control characters and instead give the escape sequences needed to generate them. This way the script won't choke on others using different platforms/editors/charsets than you.
"\00304" is the equivalent to what your doing. Just remember to turn the color off "\003" when trying to output plain text on the same line, otherwise the color-effect will bleed into the entire line.