You're welcome. smile

I thought of something else that maybe you want to use. An '!unban all'
command. If you want to do this then do the following:

Find this line
Code:
  else { msg # $2 is not a valid banmask. }


Insert before this line, the following code
Code:
  else if ($2 == all) {
    msg # Removing all bans on [color:blue]#Channel1[/color]
    var %i = 1
    while (%i <= $ibl([color:red]#Channel1[/color],0)) {
      mode [color:red]#Channel1[/color] -b $ibl([color:red]#Channel1[/color],%i)
      inc %i 
    }
  }