Full explanation of the code:
code:
function OnEvent_MyStatusChange(NewStatus){
This rule declares an event function called when
you changes your status.
code:
If (NewStatus == "4"){
And if your new status is set on Busy...
code:
Messenger.Blocked("xxxx@xxxx.nl");
...an unexisting function Blocked() in the Messenger object will be called. This should have to be
code:
var sander = Contacts.GetContact("xxxx@xxxx.nl");
var sanderIsBlocked = sander.Blocked;
to see if you blocked him or
code:
var sander = Contacts.GetContact("xxxx@xxxx.nl");
sander.Blocked == true;
to block him. So,
no block checker at all!
code:
MsgPlus.DisplayToast("Sander", "Sander heeft je geblokkeerd." ," C:\Program Files\MSN Messenger\online.wma");
Then, a toast will popup that Sander has blocked you...
Block checkers don't work, and there's no way you can create them due to the Messenger Protocol!