Hey. I figured I'd just throw this out there. This is just a simple code I wrote to make it easy to perform IRCop commands. (akill, etc.). It does so by doing a whois on the person in order to update their address in the IAL. It uses no raws. It then echos their address, and copies it to the clipboard to make it easy to just type /akill <paste here>. You can obiously use any address mask you wish by replacing the "1" in $address(%who,1) with anything you want. I hope someone out there finds this usefull. Thanks! laugh

Code:
menu nicklist {
  User Address:/.set -su5 %who $1 | /addresscheck
}
alias addresscheck {
  whois %who
  .timer 1 1 gowho
}
alias gowho {
  if ($ial(%who)) { 
    echo %who 's Address is: 4 $address(%who,1) 4
    clipboard | /clipboard -a $address(%who,1)
  }
}


"God sometimes puts us in the dark for us to see the light"