_Added in 1.9.0_ *$comchan(nick,N)* Returns the names of channels which both you and nick are on. *Parameters* table(ktable). |*Parameter*|*Description*| | nick | The nick to compare channels with. | | N | If N = 0, number of channels you share, otherwise the Nth channel. | *Properties* table(ktable). |*Property*|*Description*| | .owner | Returns [[$true]] if you are owner on this channel, otherwise [[$false]]. *(AdiIRC only)* | | .admin | Returns [[$true]] if you are admin on this channel, otherwise [[$false]]. *(AdiIRC only)* | | .op | Returns [[$true]] if you are op on this channel, otherwise [[$false]]. | | .help | Returns [[$true]] if you are halfop on this channel, otherwise [[$false]]. | | .voice | Returns [[$true]] if you have voice on this channel, otherwise [[$false]]. | *Example*
; Print number of channels you share with nick.
//echo -ag $comchan(nick, 0)

; Print the first channel you share with nick.
//echo -ag $comchan(nick, 1)