$iql » History » Version 2
Per Amundsen, 11/19/2016 05:58 AM
| 1 | 1 | Per Amundsen | _Added in 2.7_ |
|---|---|---|---|
| 2 | |||
| 3 | *$iql(#channel,N)* |
||
| 4 | |||
| 5 | Returns Nth item in the internal quiet list. |
||
| 6 | |||
| 7 | *Parameters* |
||
| 8 | |||
| 9 | #channel - The channel to retrieve quiet list from. |
||
| 10 | N - If N = 0, total number of quiets, otherwise the Nth quiet. |
||
| 11 | |||
| 12 | *Properties* |
||
| 13 | |||
| 14 | .by - The nick who set the quiet. |
||
| 15 | .ctime - The time the quiet was set in unix timestamp format. |
||
| 16 | .date - THe time the quiet was set in mmm oo HH:mmtt format. |
||
| 17 | 2 | Per Amundsen | .secs - Number of seconds until exception expire (if set to expire). |
| 18 | 1 | Per Amundsen | |
| 19 | *Example* |
||
| 20 | |||
| 21 | <pre> |
||
| 22 | ; Get number of quiet. |
||
| 23 | //echo -ag $iql(#channel, 0) |
||
| 24 | |||
| 25 | |||
| 26 | ; Get information about the first quiet. |
||
| 27 | //echo -ag $iql(#channel, 1) set by $iql(#channel, 1).by set at $iql(#channel, 1).date |
||
| 28 | </pre> |