$nick(#,0,o) will be 0 if the channel has no ops,
so
if (!$nick(#,0,o)) { commands }
or
if ($nick(#,1,o) == $null) { commands }

your choice