mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Dec 2002
Posts: 843
P
Poppy Offline OP
Hoopy frood
OP Offline
Hoopy frood
P
Joined: Dec 2002
Posts: 843
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?


Never compare yourself to others - they're more screwed up than you think.
Joined: Dec 2003
Posts: 219
F
Fjord artisan
Offline
Fjord artisan
F
Joined: Dec 2003
Posts: 219
Maybe checking for a service notice reply using an on NOTICE (remote section, no more perform on connect)

Joined: Dec 2002
Posts: 843
P
Poppy Offline OP
Hoopy frood
OP Offline
Hoopy frood
P
Joined: Dec 2002
Posts: 843
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.


Never compare yourself to others - they're more screwed up than you think.
Joined: Feb 2004
Posts: 2
P
Bowl of petunias
Offline
Bowl of petunias
P
Joined: Feb 2004
Posts: 2
How about this..I've not tried it though!!

/ns indentify password
/timer 1 5 /join #channel,#channel

Joined: Dec 2003
Posts: 219
F
Fjord artisan
Offline
Fjord artisan
F
Joined: Dec 2003
Posts: 219
and if services are -very- laggy? :tongue:
Again, I think checking services reply is the best way.

Joined: Dec 2002
Posts: 843
P
Poppy Offline OP
Hoopy frood
OP Offline
Hoopy frood
P
Joined: Dec 2002
Posts: 843
Still no joy crazy


Never compare yourself to others - they're more screwed up than you think.
Joined: Aug 2003
Posts: 1,831
I
Hoopy frood
Offline
Hoopy frood
I
Joined: Aug 2003
Posts: 1,831
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 
}


Link Copied to Clipboard