Do you want them to be asked each time they enter the channel/room or only the first time, and then have them be recognized by you/the bot each time they enter from then on?

Here's a quick code that would work as a starter...if you want/need something more complex, then I'll need more information.
Code:
 on *:join:#:{
  if $level($nick) == 1 {
    .msg $nick Please choose one of the following designations
    set %desig = $addtok(%desig,$nick,32)
    ;list of designations
  }
  else $read(Welcome.txt,$level($nick))
}
on *:text:!desig &:*:{
  if $istok(%desig,$nick,32) {
    .auser $2 $nick
    set %desig $remtok(%desig,$nick,1,32)
  }
}
 

Last edited by RusselB; 04/05/05 11:15 PM.