vote up 0 vote down star
1

I'm working on a simple irc bot in C#, and I can't figure out how to embed the typical mirc control codes for bold/color etc into string literals.

Can someone point me towards how to do this?

flag

53% accept rate
Do what? What's a mIRC colour code? What are you trying to do? – silky Sep 8 at 2:06
A mirc color code is simply a special character inserting into a string that most irc clients parse and then colorcode appropriately. – FlySwat Sep 8 at 2:08

3 Answers

vote up 7 vote down check

The mIRC color code format is described here. I guess you're asking how to embed a ^C in a string.

This is known as Caret notation. According to C0 and C1 control codes, ^C is:

'\x03'

Embedded in a string:

"blabla \x035,12to be colored text and background\x03 blabla"
link|flag
Or you might even write "♥5,12to be colored♥ ", the compiler shouldn't choke on this. – Anton Tykhyy Sep 8 at 2:15
@Anton: Never mind, reread answer. I confuse them. – Jed Smith Sep 8 at 2:19
1  
This is not ANSI colour code. ANSI colour codes are: "\x1B[32,42m" etc – Matthew Scharley Sep 8 at 2:20
vote up 3 vote down

In my Python IRC bot, I can get bold to show up in irssi using \x02sometext\x02, which shows up like:

this is \x02some text\x02

this is some text

As for colors, I believe you're looking for \x03AA,BB where A is the foreground color and B the background color (what you'd type in after Ctrl+K). Not 100% for sure, though. Try connecting an IRC client using telnet, and check what mIRC does when you use Ctrl+K.

You're not likely to get a standard cohesive behavior across IRC clients...ANSI escape codes are processed by more of the old-fare staple Unix clients like irssi, and mIRC sometimes does its own thing.

link|flag
+1 for mentioning ANSI escape codes! – Anton Tykhyy Sep 8 at 2:16
1  
mIRC has it's own colour codes (denoted by \x03), and I believe this is well supported across atleast GUI clients these days. I'd probably take this route for an IRC client. Also, I doubt irssi and similar commandline clients parse the ANSI codes, they just parse them through to the console and let it worry about them. – Matthew Scharley Sep 8 at 2:22
vote up 0 vote down
char funnyChar = '\u0998';

string x = String.Format("Code here '{0}'",funnyChar);
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.