I found this script which created a list of contacts which are online. Here is that snippet:
string[int] make_online_contacts_list() {
string list = visit_url( "account_contactlist.php" );
list = substring( list, 0 , index_of( list , "Ignore List" ) );
string[int] contacts;
int index =...