/* ctcp.oof by Jimmy McKinney (GREGOR) */ parse arg NICK MASK STUFF NICK=NICK' ' BOLD=d2c(2) if open(1,'env:lastoof',r) then do lastooftime=readln(1) call close(1) end else lastooftime="0:0:0" parse var lastooftime LHOUR':'LMIN':'LSEC thisooftime=time() parse var thisooftime THOUR':'TMIN':'TSEC LTIME=LSEC+(60*(LMIN+(60*LHOUR))) TTIME=TSEC+(60*(TMIN+(60*THOUR))) diff=ttime-ltime if diff>120 then do 'notice '||NICK||BOLD||' 33333 WWW WWW FFFFFFFFFFFFF !!! !!! !!!'||BOLD 'notice '||NICK||BOLD||' 333 3333 WWW WWW FFFFFFFFFFFFF !!! !!! !!!'||BOLD 'notice '||NICK||BOLD||'33 3333 WWW WWW FFF !!! !!!'||BOLD 'notice '||NICK||BOLD||' 333 WWW WWW FFF !!! !!! !!!'||BOLD 'notice '||NICK||BOLD||' 3333 WWW WWW FFFFFFFF !!! !!! !!!'||BOLD 'notice '||NICK||BOLD||' 3333 WWW WWW WWW FFFFFFFF !!! !!! !!!'||BOLD 'notice '||NICK||BOLD||' 3333 WWW WWW WWW FFF !!! !!! !!!'||BOLD 'notice '||NICK||BOLD||' 333 WWW WWW WWW FFF !!! !!! !!!'||BOLD 'notice '||NICK||BOLD||'33 3333 WWW WWWWW WWW FFF !!! '||BOLD 'notice '||NICK||BOLD||' 333 3333 WWW WWWWW WWW FFF !!! !!! !!!'||BOLD 'notice '||NICK||BOLD||' 33333 WWWWW WWWWW FFF !!! !!! !!!'||BOLD call open(1,'env:lastoof',w) call writeln(1,time()) call close(1) end