mIRC Home    About    Download    Register    News    Help

Print Thread
#178420 10/06/07 07:18 AM
Joined: Feb 2007
Posts: 6
D
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
D
Joined: Feb 2007
Posts: 6
is there a autokick script that i can add to my mirc so i dont have too deal with commands thank you
Danny

danny375 #178421 10/06/07 07:22 AM
Joined: Aug 2005
Posts: 525
S
Fjord artisan
Offline
Fjord artisan
S
Joined: Aug 2005
Posts: 525
You need to be more specific. Auto kick under what conditions? (e.g. an user is swearing, spamming, etc)

Joined: Feb 2007
Posts: 6
D
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
D
Joined: Feb 2007
Posts: 6
i need script that well keep people from join after thay been kick once what it does it well keep kicking them then it well ban them

danny375 #178424 10/06/07 08:02 AM
Joined: Aug 2004
Posts: 7,252
R
Hoopy frood
Offline
Hoopy frood
R
Joined: Aug 2004
Posts: 7,252
Code:
on *:kick:#:{
  set -u $+(%,kick,.,$nick) 60
}
on @*:join:#:{
  if $($+(%,kick,.,$nick),2) {
    .ban -ku60 $chan $nick Not yet $nick
  }
}

Sets a 60 seconds delay when the person is kicked, and if they join within those 60 seconds, then they are banned for 60 seconds.

Change the 60's in the above code to the number of seconds you want.


Link Copied to Clipboard