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

m (Bot: adding missing title)
Line 1: Line 1:
{{mIRC Guide}}
+
{{mirc title|On Invite - Events}}
 
The '''ON INVITE''' event triggers when a user sends the [[mIRC]] client and invite to a specific channel.
 
The '''ON INVITE''' event triggers when a user sends the [[mIRC]] client and invite to a specific channel.
  

Revision as of 20:17, 15 June 2017

The ON INVITE event triggers when a user sends the mIRC client and invite to a specific channel.

Synopsis

ON <level>:INVITE:<#[,#]>:<commands>

Parameters

<level>The level for the event to trigger.

<#[,#]>The channel or channels for which the event occurred.

#If no channel mentioned, targets all channels; otherwise, a specific channel.
[,#]Can be used to specify multiple, literal channel targets.

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

Examples

Echo to the active window the user and channel of the invite details:

ON *:INVITE:#:echo -a $nick has extended an invite to $chan

Automatically join the channel from the invite:

ON *:INVITE:#:join $chan

Compatibility

Added: mIRC v2.1a
Added on: 28 Feb 1995
Note: Unless otherwise stated, this was the date of original functionality.
Further enhancements may have been made in later versions.


See Also