Hello!

I am running mIRC 6.16 and NoNameScript 3.81, and I have a script that automatically connects me to irc.nfscars.net and the channel #nfs, but at that network there is 3 more channels I want to join. Here is the script:

_________________________________________________
on *:START: {
server irc.nfscars.net -i [name] [alternate] [email] [full name]
}

alias identify {
if (($me == [name]) && ($server == irc.nfscars.net)) { msg nickserv identify [password] }
}

on *:notice:*accepted*:?: { join #nfs }

on *:notice:*:?: {
if (($nick == nickserv) && (identify isin $1-)) { identify }
_________________________________________________

Help is gladely appreciated. grin