-
WikiChip
WikiChip
-
Architectures
Popular x86
-
Intel
- Client
- Server
- Big Cores
- Small Cores
-
AMD
Popular ARM
-
ARM
- Server
- Big
- Little
-
Cavium
-
Samsung
-
-
Chips
Popular Families
-
Ampere
-
Apple
-
Cavium
-
HiSilicon
-
MediaTek
-
NXP
-
Qualcomm
-
Renesas
-
Samsung
-
From WikiChip
mirc/identifiers/$bnick
< mirc | identifiers
$bnick refers to the nickname of the user either banned, or unbanned, during both an ON BAN Event, and an ON UNBAN Event.
Note: $bnick is not always set, because sometimes nicknames aren't even added to a certain ban/banmask.
Contents
Paramters
None
Example
Message any channel when a user has been banned
ON *:BAN:#: { ; We use this check to make sure the $bnick identifier ; has been filled, that way there are no unforeseen issues. if ($bnick) { msg # Looks like $bnick has been banned. } }
Message any channel when a user has been unbanned
ON *:BAN:#: { ; We use this check to make sure the $bnick identifier ; has been filled, that way there are no unforeseen issues. if ($bnick) { msg # Awesome! $bnick is now unbanned :) } }
Compatibility
Added: mIRC v4.6
Added On: 07/09/96