From WikiChip
Difference between revisions of "mirc/on events/on filercvd"
< mirc‎ | on events

m
m
Line 1: Line 1:
The '''ON FILERCVD''' event triggers whenever a file is received successfully via {{mIRC|dcc|dcc send}}.
+
The '''ON FILERCVD''' event triggers whenever a file is received successfully via {{mIRC|/dcc|dcc send}}.
  
 
This event fills {{mIRC|$filename}}, {{mIRC|$address}}, and {{mIRC|$nick}} with the filename, user's address, and the user's nickname (if available), respectively.
 
This event fills {{mIRC|$filename}}, {{mIRC|$address}}, and {{mIRC|$nick}} with the filename, user's address, and the user's nickname (if available), respectively.
Line 24: Line 24:
  
 
== See Also ==
 
== See Also ==
* [[/dcc command - mIRC|/DCC SEND]]
+
* {{mIRC|/dcc|/dcc send}}
* [[On filesent - mIRC|ON FILESENT]]
+
* {{mIRC|on events/on filesent|on filesent}}
* [[On getfail - mIRC|ON GETFAIL]]
+
* {{mIRC|on events/on filesent|on getfail}}
* [[On sendfail - mIRC|ON SENDFAIL]]
+
* {{mIRC|on events/on filesent|on sendfail}}
 
{{mIRC on event list}}
 
{{mIRC on event list}}
  
 
[[Category:mIRC on events|filercvd]]
 
[[Category:mIRC on events|filercvd]]

Revision as of 21:35, 21 August 2014

The ON FILERCVD event triggers whenever a file is received successfully via dcc send.

This event fills $filename, $address, and $nick with the filename, user's address, and the user's nickname (if available), respectively.

Synopsis

ON <level>:FILERCVD:<filename[,filename]>:<commands>

Parameters

<level>The level for the event to trigger.

<filename[,filename]>The filename(s) that should match the received file. These can be wildcards. Example: *.txt,*.doc,my*.txt

<commands>The commands to be performed when the event listener's criteria is met.

Examples

Echo the name of the filename received to the active window:

ON *:FILERCVD:*:echo -a Received filename: $filename

Echo the name of the filename, along with both the user's nickname and address if available:

ON *:FILERCVD:*:echo -a Received filename: $filename $iif($nick,from $nick - ,from) Address: $address

Compatibility

Added: mIRC v4.5
Added on: 30 Jun 1996
Note: Unless otherwise stated, this was the date of original functionality.
Further enhancements may have been made in later versions.


See Also