Project

General

Profile

$ialchan » History » Revision 4

Revision 3 (Per Amundsen, 10/16/2015 11:17 AM) → Revision 4/13 (Per Amundsen, 10/16/2015 11:18 AM)

_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. 
 <notextile>#</notextile> - 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 channelnick .(includes prefix) 
 .nick - Returns the nick. 
 .user - Returns the realname/fullname. 
 .account - Returns the account name. (AdiIRC only, [[IRCv3]] feature) 
 .host - Returns the hostname. 
 .addr - Returns the address in ident@host format. 
 .mark - The user [[/ialmark|mark]]. 

 *Example* 

 <pre> 
 ; 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) 
 </pre>