$iql » History » Version 1
Per Amundsen, 11/19/2016 05:46 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 | |||
18 | *Example* |
||
19 | |||
20 | <pre> |
||
21 | ; Get number of quiet. |
||
22 | //echo -ag $iql(#channel, 0) |
||
23 | |||
24 | |||
25 | ; Get information about the first quiet. |
||
26 | //echo -ag $iql(#channel, 1) set by $iql(#channel, 1).by set at $iql(#channel, 1).date |
||
27 | </pre> |