$ial » History » Version 9
Per Amundsen, 05/24/2018 10:12 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 | 9 | Per Amundsen | nick/mask - Nick or mask to lookup. (can be a [[Scripting_Wildcards|wildcard]]) |
20 | 1 | Per Amundsen | [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 | 7 | Per Amundsen | .gecos - The user realname/fullname. |
30 | 5 | Per Amundsen | .name - The user realname/fullname. |
31 | 3 | Per Amundsen | .realname - The user realname/fullname. (AdiIRC only) |
32 | 6 | Per Amundsen | .account - The user account name. ([[IRCv3]] feature) |
33 | 3 | Per Amundsen | .isaway - Returns [[$true]] if the user is away, otherwise [[$false]]. (AdiIRC only) |
34 | 4 | Per Amundsen | .away - Returns [[$true]] if the user is away, otherwise [[$false]]. |
35 | 8 | Per Amundsen | .id - Returns a unique id for this user. |
36 | 1 | Per Amundsen | |
37 | *Example* |
||
38 | |||
39 | <pre> |
||
40 | ; Print the address 'ident!nick@hostname' for 'nick'. |
||
41 | //echo -ag $ial(nick) |
||
42 | |||
43 | ; Print the number of matches for wildcard search 'nick*'. |
||
44 | //echo -ag $ial(nick*, 0) |
||
45 | |||
46 | ; Print the realname for second match using wildcard search 'nick*'. |
||
47 | //echo -ag $ial(nick*, 2).realname |
||
48 | </pre> |