Here is alittle twist to the blacklist code. If you make the script ON JOIN you can also add in the whois, Auto Op and Blacklist which will give a on join command multi functions.
Code:
 [color:red]on *:join:#: {
  [color:green]; Blacklist Nick at a level of 10[/color] 
  if ($level(adress($nick,3) == 10) { ban # $address($nick,3) | kick # $nick }
  [color:green]; Here is the whois on a nick[/color] 
  if ( $nick != $e ) { whois $nick }  
  [color:green]; Here is the auto op for ops level set at 25[/color] 
  if ($level($nick) == 25) && ($me isop $chan) { .mode $chan +o $nick } 
} [/color] 
  





Intelligence: It's better to ask a stupid question, then to prove it by not asking....