--- IRC.cpp 2004-10-24 21:57:52.000000000 +0200 +++ IRC.cpp 2004-12-03 00:11:47.000000000 +0100 @@ -270,6 +270,16 @@ usersOnChannelsModified = true; } } + else if (strcasecmp(cmd, "433")==0) + { + strcat(this->nick,"_\0"); + + char command[IRC_MESSAGE_SIZE]; + snprintf(command, IRC_MESSAGE_SIZE, "NICK %9s", this->nick); + sendString(command); + joinChannel("#glob2"); + } + } void IRC::step(void)