Shoutbox

Status change - Printable Version

-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4)
+---- Forum: Scripting (/forumdisplay.php?fid=39)
+----- Thread: Status change (/showthread.php?tid=62808)

Status change by Seanzy on 07-08-2006 at 10:33 AM

Hey, i was just wondering if its possible to make a script that changes your status when a specific user comes online.

Example:

Your current status is at Online.

Then blahblahblah@hotmail.com logs on.

Then your status changes to Away or offline.

Anyway this is possible? I would make it but im no good with scripts :(


RE: Status change by Felu on 07-08-2006 at 12:00 PM

code:
function OnEvent_ContactSignin(Email)
{
if(Email == "name@domain.com");
{
Messenger.MyStatus = 2 ; //Appear Offline
}
}
How about that?

Edit after reply below - Im learning scripts better :).
RE: Status change by Seanzy on 07-08-2006 at 12:04 PM

Awesome(Y)

Thanks! :D

I was playing around with it and couldn't figure it out myself :P

Edit: thanks to you I understand scripts a little bit more.