What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [script] auto-nick-changer

[script] auto-nick-changer
Author: Message:
armor
New Member
*


Posts: 2
Joined: Jun 2006
O.P. [script] auto-nick-changer
this function basically change your msn nick name every 10 seconds (or whatever seconds).

I have been looking for this kind of nick changer for over three years. Sporadically there were 2 to 3 tools that can auto change nickname, but these tools very soon become unworkable since they can not run with higher version of msn messenger, thus I never have the chance to realize this function on my msn messenger.

That is the reason I decide to write this script myself and i spent this whole morning studing live messenger plus' script grammar; thank god it did not take me too much time as I thought.

Just take note that this auto-nick-changer may be a lilltle annoying to your contacts, so use it selectively and wisely.

-----------------------------------------------------------------------
//* here "11000" means you nick changes every 11 seconds; because of live messenger server's anti-flood mechanism, my suggestion is that this parameter should not be shorter than 10 seconds.

MsgPlus.AddTimer('T1', 11000);


var i=0;

    function OnEvent_Timer(TimeId)
    {
        if (TimeId == 'T1')
        {
            i=i+1;
                           
            if (i == 1) Messenger.MyName='armor';
            if (i == 2) Messenger.MyName='Armor';
            if (i == 3) Messenger.MyName='aRmor';
            if (i == 4) Messenger.MyName='arMor';
            if (i == 5) Messenger.MyName='armOr';
            if (i == 6) Messenger.MyName='armoR';
            if (i == 7) Messenger.MyName='armor';
            if (i == 8) Messenger.MyName='Armor';
            if (i == 9) Messenger.MyName='ARmor';
            if (i == 10) Messenger.MyName='ARMor';
            if (i == 11) Messenger.MyName='ARMOr';
            if (i == 12) Messenger.MyName='ARMOR';
                                   
            MsgPlus.AddTimer('T1', 11000);


//* here "12" means there are 12 steps within one nick changing loop; you should adjust this parameter according to your own number of steps;

            if (i == 12) i=0;
        }
    }

This post was edited on 06-29-2006 at 10:24 AM by armor.
06-29-2006 10:18 AM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
[script] auto-nick-changer - by armor on 06-29-2006 at 10:18 AM
RE: [script] auto-nick-changer - by Felu on 06-29-2006 at 10:25 AM
RE: [script] auto-nick-changer - by Mr. Bougo on 06-29-2006 at 11:26 AM
RE: [script] auto-nick-changer - by armor on 06-29-2006 at 03:33 PM
RE: [script] auto-nick-changer - by cicklow on 07-24-2008 at 11:00 PM


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