mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Mar 2004
Posts: 20
E
eger Offline OP
Ameglian cow
OP Offline
Ameglian cow
E
Joined: Mar 2004
Posts: 20
i like to have auto join on invite, on but there are some chans i dont wanna join but i know i will get invited eventualy, need some small script that would block joining chans i specify

thanks in advance

Joined: Feb 2003
Posts: 3,432
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Feb 2003
Posts: 3,432
Code:
on 1:INVITE:*:{
if ($chan != [color:red]#channel[/color])
elseif ($chan != [color:red]#channel1[/color])
else { 
join $chan
}
}

change the red part to the channels you dont want to join.. if you want to add more channel, then just add:

elseif ($chan != #channel2)
elseif ($chan != #channel3)

and so on


if ($me != tired) { return } | else { echo -a Get a pot of coffee now $+($me,.) }

Link Copied to Clipboard