$iql » History » Revision 2
Revision 1 (Per Amundsen, 11/19/2016 05:46 AM) → Revision 2/3 (Per Amundsen, 11/19/2016 05:58 AM)
_Added in 2.7_
*$iql(#channel,N)*
Returns Nth item in the internal quiet list.
*Parameters*
#channel - The channel to retrieve quiet list from.
N - If N = 0, total number of quiets, otherwise the Nth quiet.
*Properties*
.by - The nick who set the quiet.
.ctime - The time the quiet was set in unix timestamp format.
.date - THe time the quiet was set in mmm oo HH:mmtt format.
.secs - Number of seconds until exception expire (if set to expire).
*Example*
<pre>
; Get number of quiet.
//echo -ag $iql(#channel, 0)
; Get information about the first quiet.
//echo -ag $iql(#channel, 1) set by $iql(#channel, 1).by set at $iql(#channel, 1).date
</pre>