If i understendt you right you tring to get how many ops in channel #help and all networks you are connect to

Code:
  
alias help { return $nick(#help,0,o) } 


alias help2 { var %i = 1 | while ($scon(%i)) { if ($scon(%i).help != $null) { echo -ac notice * #help $scon(%i).network Ops: $scon(%i).help }  | inc %i } }

;Usage: /help2


the update can be done automatic on event

Code:
 
on *!:JOIN:#help:{ help2 }
on *!:Part:#help:{ help2 }
on *:Kick:#help:if ($knick != $me) { help2 }
etc.
 

Last edited by tsoglanos; 11/07/04 11:56 AM.