while (1) {
$count_rooms = 0;
%count_users = ();
open $html, '>:utf8', 'chatters.html';
print $html qq{
Currently in Chatrooms
\n\n};
my $Rep;
$Rep = $Connection->SendAndReceiveWithID(
new_get_iq($ME, $CS, $NS_D_ITEMS),
10);
rep_dump( $Rep );
print $html qq{
\n};
close $html;
print "Count: $count_rooms rooms, ",scalar(keys %count_users)," users\n"
;
sleep(60);
}