mIRC Home    About    Download    Register    News    Help

Print Thread
K
k1ll3rz
k1ll3rz
K
is it possible to make a script that if u whois sum1 and try to double-click a channel they r in it will not allow u to?

thanx

Joined: Aug 2004
Posts: 7,168
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,168
Don't know why you want this, I mean, if you don't want to join the channel, just don't double click it. However, this is what I came up with, and it worked in my trials
Code:
 alias whois {
  .enable #no.connect.whois
  !.whois $1
}
#no.connect.whois off
raw 319:*:{
  echo -s $remove($1-,$chr(35))
  haltdef
}
raw 318:*:{
  .disable #no.connect.whois
}
#no.connect.whois end
 

K
k1ll3rz
k1ll3rz
K
ok kool thanx

D
DaveC
DaveC
D
Quote:
echo -s $remove($1-,$chr(35))


lol I like that, just remove the # so it cant be clicked on!

Joined: Aug 2004
Posts: 7,168
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,168
Seemed like the simplest method to do what was wanted.


Link Copied to Clipboard