Project

General

Profile

Ctcpreply » History » Version 6

Per Amundsen, 11/15/2015 03:22 AM

1 1 Per Amundsen
_Added in 1.9.0_
2
3 4 Per Amundsen
*/ctcpreply <nick> <ctcp> [message]*
4 1 Per Amundsen
5
Sends a reply to a ctcp query.
6
7 6 Per Amundsen
See also [[on CTCP]], [[on CTCPREPLY]], [[/ctcp]].
8
9 1 Per Amundsen
*Parameters*
10
11 4 Per Amundsen
<nick> - The nick to reply.
12 1 Per Amundsen
<ctcp> - The ctcp result to reply.
13
[message] - The ctcp result message to reply.
14
15
*Example*
16
17
<pre>
18 5 Per Amundsen
; Listen to a TIME CTCP request.
19 1 Per Amundsen
ctcp *:TIME:*:{
20
 
21 5 Per Amundsen
  ; Send two ctcp replies.
22 1 Per Amundsen
  /ctcpreply $nick TIME Current time: $time(hh:nn:ss TT (ZZZ))
23
  /ctcpreply $nick TIME Current Data: $time(dddd $+ $chr(44) mmmm dd $+ $chr(44) 2009)
24
 
25 5 Per Amundsen
  ; Stop AdiIRC's standard ctcp reply.
26 1 Per Amundsen
  halt
27
}
28 2 Per Amundsen
</pre>