From WikiChip
Difference between revisions of "mirc/on events/on ban"
m (bot: cat fixing naming) |
m (→See Also) |
||
Line 34: | Line 34: | ||
* {{mIRC|$banmask}} | * {{mIRC|$banmask}} | ||
* {{mIRC|$bnick}} | * {{mIRC|$bnick}} | ||
− | * | + | * {{mIRC|$ibl}} |
* {{mIRC|/ban}} | * {{mIRC|/ban}} | ||
− | * | + | * {{mIRC|on events/on ban|on ban event}} |
+ | * {{mIRC|on events/on unban|on unban event}} | ||
{{mIRC on event list}} | {{mIRC on event list}} | ||
[[Category:mIRC on events|ban]] | [[Category:mIRC on events|ban]] |
Revision as of 15:00, 21 August 2014
The ON BAN event is triggered whenever a user on a channel has been banned. When the ban occurs, the two identifiers that are most closely associated with the event are the $banmask identifier, and the $bnick identifier. It is important to note that $bnick is not always filled, as some bans don't always contain the nickname, but rather a wildcard in the form of a banmask.
Synopsis
ON <level>:BAN:<#[,#]>:<commands>
Parameters
<level>The level for the event to trigger.
<#[,#]>The channel or channels for which the ban 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
; This ban event listens for a ban ; on all channels, and responds by messaging the channel. ON *:BAN:#:msg # Looks like the address $banmask has just been added to this channel's ban list.
; This example will watch for a ban on two ; specific channels: #myChannel and #myOtherChannel. When a ban is ; noticed, the script will also attempt to find out if a $bnick was set. ; If it was not, it will use it, otherwise it will use $banmask. ON *:BAN:#myChannel,#myOtherChannel:msg # Wow, so $iif($bnick,$bnick just got in trouble,$banmask was just added to the channel's ban list) $+ .
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
- $banmask
- $bnick
- $ibl
- /ban
- on ban event
- on unban event
mIRC on event list