mIRC Homepage
Posted By: FunChatter Kick - 07/06/03 02:18 PM
I rember long time ago on the old boards... Someone was asking for a "many users" kick thing... so that when he selects let's say like 10+/- users he could kick them all by clicking once on kick and putting once a kick msg.... Not sure how can I script this... Anyone could help? smile
Posted By: Adrenalin Re: Kick - 07/06/03 03:21 PM
Code:
Alias Kicks {
;Syntax /Kicks #Chan Interval Nick1 Nick2 Nick..
  var %Nicks = $gettok($3-,0,32)
  var %Interval = $2
  var %Reson = $$?="Reason:"
  var %i = 1
  while (%i <= %Nicks) {
    var %Nick = $gettok($3-,%i,32)
    echo -a %i %Nick  $gettok($3-,%i,32)
    .timer 1 $calc(%i * %Interval) kick $1 %Nick %Reson
    inc %i
  }
}
Posted By: netzer0 Re: Kick - 07/06/03 07:44 PM
That is a really cool script i wouldnt use it my self but its a really cool one..
Posted By: pheonix Re: Kick - 11/06/03 08:41 AM
menu nicklist {
Kick Selected: var %reason $$?="enter reason" | /kick # $snicks %reason
}
Posted By: Collective Re: Kick - 11/06/03 08:42 AM
Won't work on most servers, don't allow you to use commas to list multiple nicks to kick.
© mIRC Discussion Forums