2007
Simple Kick All
By adding this snipet into your mIRC, you will able to kick a nick from all of channels where you’re op only with one simple command
Just type /ka nick your message in your mIRC and there you’re, he/she will be kicked off from all your channels :p
Kick message is optional ^_*
Here’s the code:
alias ka {
var %n = 1, %b = $comchan($$1,0)
while (%n < = %b) {
if ($me isop $comchan($$1,%n)) {
kick $comchan($$1,%n) $$1 $iif($2-,$2-,Your not welcome here!)
}
inc %n
}
}