/*

    A MASS HIDE OpS SCRIPT BY GåZ MURFIN FOR |DWaRFx|   :-)
    This script will hide the ops of all the users with ops

*/
options results;

'getusers';
userlist=result;


users=words(userlist);

/*'say' userlist;
'say' users;*/

'GETMYNICK'
me=result 
'echo |DWaRFx| Mass hide OPs Script innitiated - Created by GåZ Murfin'
'echo Everyone thinks there is no Ops now!'
'echo |DWaRFx| - Confuse those newbies!'
'echo to remedy this situation tell them to type /Names'
Call Setclip('DFxTIME',Time())
DO i=1 to users
        us=subword(userlist,i,1)

        if left(us,1,1)='@' then us=right(us,length(us)-1)
        if left(us,1,1)='+' then us=right(us,length(us)-1)

        if upper(us)~=upper(me) Then do
                if upper(us)~='COøLWAVE' Then do
                        if upper(us)~='GåZ' Then do
                                'say /mode -o+o' us us
                        END
                END
        END


END

      
