$ial » History » Version 5
Per Amundsen, 02/21/2017 06:20 AM
| 1 | 1 | Per Amundsen | _Added in 1.9.0_ |
|---|---|---|---|
| 2 | |||
| 3 | *$ial* |
||
| 4 | |||
| 5 | Returns [[$true]] if Internal Address List is enabled, otherwise [[$false]]. |
||
| 6 | |||
| 7 | _Always returns [[$true]] in AdiIRC._ |
||
| 8 | |||
| 9 | ----------------------------------------------------------------------------- |
||
| 10 | |||
| 11 | _Added in 1.9.0_ |
||
| 12 | |||
| 13 | *$ial(nick/mask,[N])* |
||
| 14 | |||
| 15 | Returns the Nth address matching mask in the Internal Address List. |
||
| 16 | |||
| 17 | *Parameters* |
||
| 18 | |||
| 19 | nick/mask - Nick or mask to lookup. (can be a wildcard) |
||
| 20 | [N] - If N = 0, number of lookup matches, otherwise the Nth match. (optional, default i 1) |
||
| 21 | |||
| 22 | *Properties* |
||
| 23 | |||
| 24 | .nick - The user nick. |
||
| 25 | .user - The user ident. |
||
| 26 | .host - The user hostname. |
||
| 27 | .addr - The user ident@hostname. |
||
| 28 | .mark - The user [[/ialmark|mark]]. |
||
| 29 | 5 | Per Amundsen | .name - The user realname/fullname. |
| 30 | 3 | Per Amundsen | .realname - The user realname/fullname. (AdiIRC only) |
| 31 | .account - The user account name. (AdiIRC only, [[IRCv3]] feature) |
||
| 32 | .isaway - Returns [[$true]] if the user is away, otherwise [[$false]]. (AdiIRC only) |
||
| 33 | 4 | Per Amundsen | .away - Returns [[$true]] if the user is away, otherwise [[$false]]. |
| 34 | 1 | Per Amundsen | |
| 35 | *Example* |
||
| 36 | |||
| 37 | <pre> |
||
| 38 | ; Print the address 'ident!nick@hostname' for 'nick'. |
||
| 39 | //echo -ag $ial(nick) |
||
| 40 | |||
| 41 | ; Print the number of matches for wildcard search 'nick*'. |
||
| 42 | //echo -ag $ial(nick*, 0) |
||
| 43 | |||
| 44 | ; Print the realname for second match using wildcard search 'nick*'. |
||
| 45 | //echo -ag $ial(nick*, 2).realname |
||
| 46 | </pre> |