mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Dec 2002
Posts: 155
S
Strider Offline OP
Vogon poet
OP Offline
Vogon poet
S
Joined: Dec 2002
Posts: 155
Quote:
on BAN/UNBAN

The on BAN and on UNBAN events trigger when a user on a channel is banned or unbanned.


Format: on <level>:BAN:<#[,#]>:<commands>
Example: on 1:BAN:#mirc,#irchelp:/msg $nick Sorry but you're not allowed on $chan

It should probably be on 1:BAN:#mirc,#irchelp:/msg $bnick Sorry but you're not allowed on $chan.

Last edited by Strider; 15/08/06 07:50 PM.
Joined: Sep 2005
Posts: 2,881
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Sep 2005
Posts: 2,881
It should also probably check that $bnick exists.

Code:
on 1:ban:#:{
  if ($bnick != $null) { msg $bnick Sorry but you're not allowed on $chan }
}


Link Copied to Clipboard