If you'd like usernames to work as suggested (which I never knew the proper rules for the IRC names so it'll be fun working out little bugs with it :P) here's the code.
First, open ezirc.php and find:
PHP Code:
function parseName($name)
Replace the entire function with:
PHP Code:
function parseName($name)
{
$name = ereg_replace("([^A-Za-z\_\`\^]{1}[^a-zA-Z0-9\_\`\^]{0,31})", "", $name);
return $name;
}
This is (obviously) included with 2.0.2
And for further notice, this thread will be a secondary checking place for support. I'll check every day, but I will mainly be on my forum (while debugging and working on EzIRC live, as well as backend functionality, etc.)