here is how you can make your mIRC to auto connect to both
WyldRyde, Ustream, and networks you regually connect to, make sure that you always put the scripts in the "Remotes" section in the mIRC scripts editor, then just copy the entire code pasted bellow, and just simply change each instance of "<password>" and "<nickname>" with your registered nicknames on
WyldRyde, Ustream, etc, it is solely up to your discretion to delete/remove my channel off the script (or #chris,#lockergnome,#help,#
usrbingeek on
WyldRyde, or #,#help,#ustream.
TV on Ustream) . If you have any problems with this script, feel free to join my channel (#cooldude13233) on either
WyldRyde or Ustream (IF I AM THERE, I MAY NOT BE ON 24/7) and i can assist you further

on *:START: {
server irc.wyldryde.org
server -m chat1.ustream.tv /pass <password>
server -m irc.network1.com
server -m irc.network2.com
}
on *:CONNECT: {
if ($network == WyldRyde) {
nick <nickname>
ns identify <password>
join #chris,#cooldude13233,#lockergnome,#help,#usrbingeek
}
else if ($network == Ustream) {
nick <nickname>:<password>
pass <password>
join #,#cooldude13233,#help,#ustream.tv
}
else if ($network == Example1) {
nick <nickname>
join #chan1,#chan2,#chan3
}
else if ($network == Example2) {
nick <nickname>
join #chan1,#chan2,#chan3
}
}