mIRC Home    About    Download    Register    News    Help

Print Thread
#109005 24/01/05 07:18 PM
Joined: Jun 2004
Posts: 9
A
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
A
Joined: Jun 2004
Posts: 9
Please add $comchan(nick,all) for returns the names of all channels which both you and nick are on but the number. smile

#109006 24/01/05 07:36 PM
Joined: Feb 2004
Posts: 2,019
Hoopy frood
Offline
Hoopy frood
Joined: Feb 2004
Posts: 2,019
Well,

it might be a good addition, though the scripted equivalent is so simple, that one might wonder why add it in the first place.

In the mean time, until it gets added, you could try:

Usage: $comchanall(nick)

Code:
alias comchanall {
  var %a = 1, %b 
  while $comchan($$1,%a) {
    %b = %b $v1 
    inc %a
  }
  return %b
}


Gone.

Link Copied to Clipboard