hi guys. I want a script that will have an option to block all contacts on msn so i will have to unblock whoever i dont want to see me online. im tired of keep appearing offline. I think it is very easy. Thanks in advance
code:for ( var oContact = new Enumerator ( Messenger.MyContacts ); !oContact.atEnd(); oContact.moveNext() ) {
oContact.item().Block = true;
}
This code will block everyone on your list (it is not irreversable) it does not take into account their current blocked status. It just blocks EVERYONE.