Blitzjager commented on a Page, kicks a nick when you /me kicks (nick)  -  Dec 06, 2008

It's not much different than napa's but you can add a kick message.
/mekicks
And /me kicks $nick [kick message]
If you don't put a kick message it will take one from the text file.

on *:INPUT:*: {
  if ($1-2 == /me kicks) && ($me isop $chan) {
    haltdef
    if (!$3) { echo -a You must choose a nick. }
    if ($3 !ison $chan) { echo -a They aren't on $chan }
    elseif ($4) {
      describe $chan kicks $3
      kick $chan $3 $4-
    }
    elseif (!$4) {
      describe $chan kicks $3 $read(mekicks.txt, $rand(1,$lines(mekicks.txt)))
      kick $chan $3 $me just kicked you $read(mekicks.txt, $readn)
    }
  }
}
alias mekicks {
  write mekicks.txt $1-
}

I like this too that's why I keep posting. So thanks for getting me started on this. :)

 Respond  
Are you sure you want to unfollow this person?
Are you sure you want to delete this?
Click "Unsubscribe" to stop receiving notices pertaining to this post.
Click "Subscribe" to resume notices pertaining to this post.