mIRC Home    About    Download    Register    News    Help

Print Thread
#151025 12/06/06 01:17 PM
Joined: May 2006
Posts: 87
S
Babel fish
OP Offline
Babel fish
S
Joined: May 2006
Posts: 87
I was wondering if someone could help me get a script. Whenever someone private messages one of my bots, I would like that user to be banned for a certain amount of time. Help is appreciated.

#151026 12/06/06 03:36 PM
Joined: Aug 2005
Posts: 525
S
Fjord artisan
Offline
Fjord artisan
S
Joined: Aug 2005
Posts: 525
Code:
on *:TEXT:*:?:{
  var %chan = [color:red]#Channel[/color]
  if ($me isop %chan) && ($nick ison %chan) {
    ban -ku[color:red]X[/color] %chan $nick 2
  }
}


Replace...
#Channel - The channel to ban from.
X - The duration of the ban, in seconds. It follows directly after the 'u', there is no space between the two.


Link Copied to Clipboard