_Added in 1.9.0_ */ctcpreply <nick> <ctcp> [message]* Sends a reply to a ctcp query. *Parameters* <nick> - The nick to reply. <ctcp> - The ctcp result to reply. [message] - The ctcp result message to reply. *Example*
; Listen to a TIME CTCP request.
ctcp *:TIME:*:{
 
  ; Send two ctcp replies.
  /ctcpreply $nick TIME Current time: $time(hh:nn:ss TT (ZZZ))
  /ctcpreply $nick TIME Current Data: $time(dddd $+ $chr(44) mmmm dd $+ $chr(44) 2009)
 
  ; Stop AdiIRC's standard ctcp reply.
  halt
}