Project

General

Profile

$admnick » History » Version 3

Per Amundsen, 11/21/2015 11:55 PM

1 2 Per Amundsen
_Added in 2.0_
2 1 Per Amundsen
3
*$admnick*
4
5
Returns the nick that was (de)opped during a [[on ADMIN]], on [[on DEADMIN]] [[Scripting_Events|event]].
6
7
*Example*
8
9
<pre>
10
on *:ADMIN:*:echo -ag The nick opped is $admnick
11
12
on *:DEADMIN:*:echo -ag The nick deopped is $admnick
13
</pre>
14
15
-----------------------------------------------------------------------------
16
17 3 Per Amundsen
_Added in 2.0_
18
19 1 Per Amundsen
*$admnick(#,N)*
20
21 3 Per Amundsen
Returns the Nth admin nick.
22
23
*Parameters*
24
25
<notextile># - The channel.</notextile>
26
N - If N = 0, number of nicks, otherwise the Nth nick.
27
28
*Example*
29
30
<pre>
31
echo -ag There is $admnick(#,0) admin users
32
33
echo -ag First admin nick is $admnick(#,1)
34
</pre>