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
Felu
Veteran Member
*****


Posts: 2223
Reputation: 72
29 / Male / Flag
Joined: Apr 2006
Status: Away
RE: [script] auto-nick-changer
theRand - Allows you to randomize your nickname or personal message from a text file already has this feature ;)
06-29-2006 10:25 AM
Profile E-Mail PM Web Find Quote Report
Mr. Bougo
Junior Member
**


Posts: 51
33 / Male / –
Joined: Jun 2006
RE: [script] auto-nick-changer
If you want to do your own script, a select case would be better instaed of if (i == 1) etc


EDIT: Or better, an array with all your nicks and on the timer event Messenger.MyName = nickarray[i]

This post was edited on 06-29-2006 at 11:28 AM by Mr. Bougo.
06-29-2006 11:26 AM
Profile PM Find Quote Report
armor
New Member
*


Posts: 2
Joined: Jun 2006
O.P. RE: [script] auto-nick-changer
thanks
06-29-2006 03:33 PM
Profile E-Mail PM Find Quote Report
cicklow
New Member
*

Avatar

Posts: 14
Reputation: 1
40 / Male / –
Joined: Jul 2006
RE: [script] auto-nick-changer
code:
var timerID = null;
var timerRunning = false;
var id,pause=0,position=0;


function OnEvent_Signin(Email)
{
    MsgPlus.AddTimer("Time",1000);
}

function OnEvent_Timer(sTimerId)
{
    if (sTimerId == "Time") {
        var i,k,msg = Messenger.MyName;
        k = (75/msg.length)+1;
        for(i=0;i<=k;i++) msg+=" "+msg;
              Messenger.MyName = msg.substring(position,position+75);
        if(position++==38) position=0;
        MsgPlus.AddTimer("Time",1000);
    }
}

my code!! bye!
-=Cicklow SOFT®=-
07-24-2008 11:00 PM
Profile E-Mail PM Web Find Quote Report
« Next Oldest Return to Top Next Newest »


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