$abook » History » Version 1
Per Amundsen, 12/04/2015 04:50 AM
| 1 | 1 | Per Amundsen | _Added in 2.2_ |
|---|---|---|---|
| 2 | |||
| 3 | *$abook(nick|N,[N])* |
||
| 4 | |||
| 5 | Returns information about nicknames listed in the Address book. |
||
| 6 | |||
| 7 | _Nick can be a wildcard._ |
||
| 8 | |||
| 9 | *Parameters* |
||
| 10 | |||
| 11 | nick|N - The nick to lookup, if N = 0, number of nicks, otherwise the Nth nick. |
||
| 12 | [N] - if N = 0, number of nicks, otherwise the Nth nick. (optional) |
||
| 13 | |||
| 14 | *Properties* |
||
| 15 | |||
| 16 | .nick - The nickname. |
||
| 17 | .info - The name. |
||
| 18 | .website - The website. |
||
| 19 | .address - The address. (AdiIRC only) |
||
| 20 | .email - The email. |
||
| 21 | .picture - The picture filename. |
||
| 22 | .noteN - The Nth note. |
||
| 23 | |||
| 24 | *Example* |
||
| 25 | |||
| 26 | <pre> |
||
| 27 | //echo -ag Number of users in the Address book is $abook(*, 0) |
||
| 28 | |||
| 29 | //echo -ag The first users in Address book is $abook(*, 1) |
||
| 30 | |||
| 31 | </pre> |