From WikiChip
Editing mirc/ctcp events

Warning: You are not logged in. Your IP address will be publicly visible if you make any edits. If you log in or create an account, your edits will be attributed to your username, along with other benefits.

The edit can be undone. Please check the comparison below to verify that this is what you want to do, and then save the changes below to finish undoing the edit.

This page supports semantic in-text annotations (e.g. "[[Is specified as::World Heritage Site]]") to build structured and queryable content provided by Semantic MediaWiki. For a comprehensive description on how to use annotations or the #ask parser function, please have a look at the getting started, in-text annotation, or inline queries help pages.

Latest revision Your text
Line 1: Line 1:
{{mirc title|CTCP}}
 
 
CTCP stands for Client-To-Client-Protocol which is a special type of communication between IRC Clients. By creating CTCP events, you can make your mIRC react to commands or requests from other users.  
 
CTCP stands for Client-To-Client-Protocol which is a special type of communication between IRC Clients. By creating CTCP events, you can make your mIRC react to commands or requests from other users.  
  
Line 10: Line 9:
 
<syntaxhighlight lang="mIRC">ctcp <level>:<matchtext>:<*|#|?>:<commands></syntaxhighlight>
 
<syntaxhighlight lang="mIRC">ctcp <level>:<matchtext>:<*|#|?>:<commands></syntaxhighlight>
  
* '''<level>''' - The corresponding {{mIRC|access levels}} for the event to trigger.
+
See the {{mIRC on events\on text|on text}} event for detailed information about <level> <matchtext> etc
* '''<matchtext>''' - The corresponding {{mIRC|on text|matchtext}} for the event to trigger.
+
 
* '''<*><?><#>''' - The place, or places where the event listens, you can specify specific name of window, seperate them by comma.
 
** '''*''' - Any query/channel window
 
** '''?''' - Any query windows
 
** '''#''' - Any channel window
 
* '''<commands>''' - The commands to be performed when the event triggers
 
  
 
== Examples ==
 
== Examples ==
triggers when someone sends a private ctcp "test", which is a privmsg, and then use /ctcpreply, which sends a notice, this will trigger the {{mIRC|on events/on ctcpreply|on ctcpreply}} event for that user.
 
  
 
<syntaxhighlight lang="mIRC">
 
<syntaxhighlight lang="mIRC">
 
ctcp *:test:?:ctcpreply $nick success
 
ctcp *:test:?:ctcpreply $nick success
 
</syntaxhighlight>
 
</syntaxhighlight>
 
+
triggers when someone sends a private ctcp "test", which is a privmsg, and then use /ctcpreply, which sends a notice, this will trigger the {{mIRC on events\on ctcpreply|on ctcpreply}} event for that user.
You can use the CTCP event to either halt or replace the default time reply. This example sends a substitute reply at a random time within a 24 hour window, then halts mIRC from returning the default reply containing your true time. If you want to block the TIME reply only, remove the /ctcpreply but keep the /halt
 
 
 
<syntaxhighlight lang="mIRC">
 
ctcp *:time:{ ctcpreply $nick TIME $asctime($calc($ctime -43200+ $r(0,86400) )) | halt }
 
</syntaxhighlight>
 
 
 
However, mIRC doesn't allow the CTCP event to suppress the default version reply. If you do the same thing as above, this would send a second reply to the standard ctcp version, but it does not block the default reply.
 
  
 
<syntaxhighlight lang="mIRC">
 
<syntaxhighlight lang="mIRC">
ctcp *:version:?:{ ctcpreply $nick mIRC 12.5!! | halt }
+
ctcp *:version:?:ctcpreply $nick mIRC 12.5!!
</syntaxhighlight>
+
</syntaxhighlight>would send a second reply to the standard ctcp version.
 
 
Formerly, you could block the ctcp reply only by using /ignore -t to block *all* incoming ctcp. But with the ON PARSELINE event, you can replace the outbound message. Note that the reply used to be always using NOTICE, but in newer versions there can be some situations where your version reply is made as a CNOTICE, so you should detect both types now. You can modify any part between but not including the $regml(1) and the $+ $chr(1)
 
 
 
<syntaxhighlight lang="mIRC">
 
On $*:PARSELINE:out:/^((NOTICE|CNOTICE \S+) \S+ :\x01VERSION) mIRC/:{ .parseline -otn $regml(1) Not mIRC $version $+ $iif($beta,. $+ $v1) $+ $chr(1) } ; modify of SReject 2017
 
</syntaxhighlight>
 
== Compatibility ==
 
{{mIRC compatibility|3.5}}
 
== See also ==
 
* {{mIRC|on parseline}}
 
* [[List of on events - mIRC|mIRC Events]]
 

Please note that all contributions to WikiChip may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see WikiChip:Copyrights for details). Do not submit copyrighted work without permission!

Cancel | Editing help (opens in new window)