If I have an +b in a channel, it would be valid use ...
Code:
RAW 474:*:{
  cs unban $2 
  join $2 
}

The problem arises when we do not have sufficient level

#Chan unable to join channel (address is banned)
-
#Chan unable to join channel (address is banned)
-
#Chan unable to join channel (address is banned)
-
#Chan unable to join channel (address is banned)
-
This is my solution...
Code:
RAW 474:*:{
  inc %x
  if (%x <= 1) { cs unban $2 | join $2 }
  else { unset %x | halt }
}

The question is ... Does anyone have any other solution?

Last edited by kwell; 16/04/08 11:41 PM.