What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » MSN ID calculator

MSN ID calculator
Author: Message:
Eljay
Elite Member
*****

Avatar
:O

Posts: 2949
Reputation: 77
– / Male / –
Joined: May 2004
O.P. MSN ID calculator
I saw someone ask for this in a thread yesterday but the thread sort of disappeared so im going to post it here :P

code:
function msnID(email)
{
    var msnID = 0;
    email = email.toLowerCase();
    for(i = 0; i < email.length; i++){
        msnID = msnID * 101 + email.charCodeAt(i);
        msnID = msnID - Math.floor(msnID / 4294967296) * 4294967296;
    }
    return msnID;
}

Hope it helps someone :)
06-06-2006 08:56 AM
Profile PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
MSN ID calculator - by Eljay on 06-06-2006 at 08:56 AM
RE: MSN ID calculator - by CookieRevised on 06-06-2006 at 09:03 AM
RE: MSN ID calculator - by Eljay on 06-06-2006 at 09:05 AM
RE: MSN ID calculator - by Pai on 06-06-2006 at 09:54 AM


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On