if you want to kick him from all channels those would be fine. but if you wanted to kick him from a specific channel:
Code:
on *:NICK:{ 
  if (M3GA?* iswm $newnick) && ($newnick ison #ChannelToKickFrom) && ($me isop #ChannelToKickFrom) { 
    ban -ku3 $v2 $newnick 2 You changed your nick to something other than M3GA 
  }
}

Change "ChannelToKickFrom" to the channel name

Last edited by FroggieDaFrog; 17/05/10 01:26 AM.