mIRC Home    About    Download    Register    News    Help

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

F
fxmakers
fxmakers
F
Maybe checking for a service notice reply using an on NOTICE (remote section, no more perform on connect)

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

P
Phlox
Phlox
P
How about this..I've not tried it though!!

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

F
fxmakers
fxmakers
F
and if services are -very- laggy? :tongue:
Again, I think checking services reply is the best way.

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

I
Iori
Iori
I
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