mIRC Home    About    Download    Register    News    Help

Print Thread
#28588 07/06/03 02:18 PM
Joined: Dec 2002
Posts: 334
F
Fjord artisan
OP Offline
Fjord artisan
F
Joined: Dec 2002
Posts: 334
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

#28589 07/06/03 03:21 PM
Joined: Apr 2003
Posts: 413
A
Fjord artisan
Offline
Fjord artisan
A
Joined: Apr 2003
Posts: 413
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
  }
}

#28590 07/06/03 07:44 PM
N
netzer0
netzer0
N
That is a really cool script i wouldnt use it my self but its a really cool one..

#28591 11/06/03 08:41 AM
P
pheonix
pheonix
P
menu nicklist {
Kick Selected: var %reason $$?="enter reason" | /kick # $snicks %reason
}

#28592 11/06/03 08:42 AM
Joined: Dec 2002
Posts: 3,015
C
Hoopy frood
Offline
Hoopy frood
C
Joined: Dec 2002
Posts: 3,015
Won't work on most servers, don't allow you to use commas to list multiple nicks to kick.


Link Copied to Clipboard