mIRC Homepage
Posted By: Xiad Kick and ban script for when pm'd - 24/06/05 01:39 PM
I wish to kick, then ban anyone who pm's me.. anyone know how to achive this?
Posted By: Riamus2 Re: Kick and ban script for when pm'd - 24/06/05 02:36 PM
If you want to kick/ban them from a specific channel:

Code:
on *:text:*:?: {
  if ($nick ison #yourchan && $me isop #yourchan) {
    ban -k #yourchan $address($nick,2)
  }
}
Posted By: Xiad Re: Kick and ban script for when pm'd - 24/06/05 03:19 PM
It bans, but not kicks.. If you know of how to do that, great.. Other than that, works like a charm smile
Posted By: Xiad Re: Kick and ban script for when pm'd - 24/06/05 03:35 PM
Nevermind, I worked it out from what I had lol
Posted By: Riamus2 Re: Kick and ban script for when pm'd - 24/06/05 04:11 PM
My fault. -k works only on $nick.

Code:
on *:text:*:?: {
  if ($nick ison #yourchan && $me isop #yourchan) {
    ban #yourchan $address($nick,2)
    kick #yourchan $nick Don't PM me.
  }
}
Posted By: xDaeMoN Re: Kick and ban script for when pm'd - 24/06/05 04:46 PM
Instead of using $address, /ban has an optional masking

Code:
 ban -k #yourchan $nick 2 
Posted By: Riamus2 Re: Kick and ban script for when pm'd - 24/06/05 04:59 PM
Heh. I forgot about that. I always just ban manually. smile
© mIRC Discussion Forums