mIRC Homepage
Posted By: noir Drive-by / Fly-by script - 27/09/07 03:47 AM
I'm looking for a drive-by script, one that will temporary ban someone from a channel (say 20minutes or so)then automatically unban them - if they jump in and out of channel.

Could anyone direct me on where I might be able to find one, please?

Thank you in advance.

-noir
Posted By: deegee Re: Drive-by / Fly-by script - 27/09/07 06:11 AM
This sets a var when user joins for 30secs (you can adjust the time here "inc -u30 ...")
When user parts if the var is still set, the user is banned for 1200 secs (ban -u1200 # ...")
Code:
on @*:join:#:{
  inc -u30 $+(%,flyby,$cid,#,.,$site)
}
on @!*:part:#:{
  if $($+(%,flyby,$cid,#,.,$site),2) { ban -u1200 # $wildsite }
}
Posted By: noir Re: Drive-by / Fly-by script - 27/09/07 02:33 PM
Thank you so very much, deegee.

If I may ask, please - would that script cover any and all channels I op in? Or would it be a specific channel?

Again, thank you.
Posted By: SladeKraven Re: Drive-by / Fly-by script - 27/09/07 04:23 PM
That triggers on any channel you are currently opped in.
© mIRC Discussion Forums