Hello.

I have a problem with the red part of this script:

Code:
on *:TEXT:!deop*:#:{
  if ($ulevel != 10) && ($ulevel != 11) {
    notice $nick You are not high enough level, please contact admin for further information.
  }
  elseif ($me isop $chan) && ($2- == $me) && ($ulevel == 10) {
    notice $nick I don't think so
  }
  elseif ($nick !isop $chan) {
    notice $nick $2 isn't an op.
  }
  elseif ($me !isop $chan) {
    notice $nick I'm not an op on this channel.
  }
  [color:red]elseif ($ulevel == 10) && ($2- == $level(11)) {
    notice $nick $2 is an op, you can't deop him.
  }[/color]
  else {
    mode $chan -o $nick
  }
}


I need the my bot to tell an ulevel 10 the notice message if he trys to use the bot to deop an ulevel 11. Can anyone help?