<?php include_once("ymsg.class.php"); $ymsg = new YMSG(); $ymsg->Verbosity(2); $ymsg->YahooUser("your username here"); $ymsg->YahooPass("the password goes here"); $ymsg->YahooConnect(); if($ymsg->ConnectedStatus() == 0){ exit; } while(TRUE){ // This is what the old DaB did ... // $ymsg->YahooDenyABuddy($argv[1]); // This is what the old online scanners did // $ymsg->YahooAvatarLink($argv[1]); $ymsg->parsepackets(); sleep(2); } ?>
|