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:
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 »

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