I have my perform set to join certain channels on connect, and also to identify to my nick. Occasionally though I end up joining before I've identified - is there any way of setting a 5 second delay or something to prevent this happening, so that I don't join until after I've identified?
I tried that, nothing happened. I'd already joined the channels I'm in by the time I got the server notice, so it's back to the drawing board. I'm sure there's a very simple answer, damned if I know what though.
Try this, change blue stuff to the real info, you'll need to make the *identified* should be a wildcard match for the notice you get when your passwd is accepted.
Code:
on *:connect:{
if $network == [color:blue]NameoftheNET[/color] {
nickserv identify [color:blue]passwd[/color]
}
}
on *:notice:[color:red]*identified*[/color]:*:{
join #chan,#chanel5
}