$eventtarget » History » Version 4
Per Amundsen, 01/26/2016 05:17 AM
1 | 1 | Per Amundsen | _Added in 2.3_ |
---|---|---|---|
2 | |||
3 | 3 | Per Amundsen | *$eventtarget(type, channel)* |
4 | 1 | Per Amundsen | |
5 | Returns the event target settings for a event type/channel. |
||
6 | |||
7 | 0 = In Channel. |
||
8 | 1 = In Status. |
||
9 | 2 = Hide. |
||
10 | |||
11 | _Number is relative to the event dropdowns._ |
||
12 | |||
13 | 4 | Per Amundsen | *Parameters* |
14 | 1 | Per Amundsen | |
15 | type - Event type join,mode,part,topic,quit,ctcp,kick,nick. |
||
16 | 3 | Per Amundsen | channel - The channel to check. |
17 | 1 | Per Amundsen | |
18 | *Example* |
||
19 | |||
20 | <pre> |
||
21 | 2 | Per Amundsen | on ^*:JOIN:*:{ |
22 | 1 | Per Amundsen | if ($eventtarget(join, #) == 2) { |
23 | ; Hide |
||
24 | halt |
||
25 | } |
||
26 | |||
27 | if ($eventtarget(join, #) == 1) { |
||
28 | ; Show in status window. |
||
29 | echo -s $nick joins # |
||
30 | } |
||
31 | else { |
||
32 | ; Show in channel window. |
||
33 | echo # $nick joins # |
||
34 | } |
||
35 | 2 | Per Amundsen | |
36 | halt |
||
37 | 1 | Per Amundsen | } |
38 | </pre> |