mIRC Home    About    Download    Register    News    Help

Print Thread
#186829 27/09/07 03:47 AM
N
noir
noir
N
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

Joined: Jun 2006
Posts: 506
D
Fjord artisan
Offline
Fjord artisan
D
Joined: Jun 2006
Posts: 506
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 }
}

N
noir
noir
N
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.

Joined: Dec 2002
Posts: 3,534
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 3,534
That triggers on any channel you are currently opped in.


Link Copied to Clipboard