Project

General

Profile

$iil » History » Version 1

Per Amundsen, 08/11/2015 07:39 AM

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