$ialchan » History » Revision 7
« Previous |
Revision 7/13
(diff)
| Next »
Per Amundsen, 12/13/2019 06:31 PM
Added in 1.9.0
$ialchan(nick|mask,#,[N])
Returns the Nth address on the specified channel matching nick or mask in the Internal Address List.
Parameters
nick|mask - Nick or mash to lookup.
# - The channel to lookup on.
[N] - If N = 0 number of addresses, otherwise the Nth address (default is 1). (optional)
Properties
.pnick - Returns the channelnick. (includes prefix)
.cnick - Returns the nick in .@%+nick format. (Only the highest channel prefix is returned, AdiIRC only)
.nick - Returns the nick.
.user - Returns the realname/fullname.
.host - Returns the hostname.
.addr - Returns the address in ident@host format.
.mark - The user mark.
.account - Returns the account name. (AdiIRC only, IRCv3 feature)
.isaway - Returns $true if the user is away, otherwise $false. (AdiIRC only)
Example
; Prints number of matches from 'nick' on '#channel'. //echo -ag $ialchan(nick, #, 0) ; Prints the first matc from 'nick' on '#channel'. //echo -ag $ialchan(nick, #, 1)
Updated by Per Amundsen almost 5 years ago · 7 revisions