Skip to content

Instantly share code, notes, and snippets.

@nicklozon
Created June 1, 2012 13:47
Show Gist options
  • Save nicklozon/2852279 to your computer and use it in GitHub Desktop.
Save nicklozon/2852279 to your computer and use it in GitHub Desktop.
mIRC NickServ identification and autojoin
on 1:NOTICE:This nickname is registered*:?:{
if ($network == freenode) {
/msg NickServ identify <password>
}
}
on 1:NOTICE:You are now identified for*:?:{
if ($network == freenode) {
/join #python,#jquery,#git,#vim,#bash,#css,#django,#nginx
}
}
on *:START:{
server hubbard.freenode.net
;server -m irc.teksavvy.ca
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment