What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » problem changing nick

problem changing nick
Author: Message:
bran
New Member
*


Posts: 2
34 / Male / –
Joined: Aug 2006
O.P. problem changing nick
Hi,

I wrote my own script to change the nick every second so that the nick scrolls from the left to the right with dots left and right of it (like "ping-pong" with the nick).

However, after some time I get an error message "Your display name could not be changed." (translated from german), although the nick is changed.

Has the Messenger something like a filter for nickname-changing so that it cannot be changed every second?

If I have an error in the code, here it is:

code:
var curPos = 0;
var text = "bran";
var fullsize = 10;
var spacer = ".";
var inc;


// Run "Ping-Pong"
function OnEvent_Initialize(MessengerStart) {
    MsgPlus.AddTimer("pingpong", 1000);
}

function OnEvent_Timer(timerID) {
    if(timerID == "pingpong") {
        // building the string
        var str = "";
        for(var i = 0; i < pos; i++) {
            str += spacer;
        }
        str += text;
        for(var i = pos + text.length; i < fullsize; i++) {
            str += spacer;
        }
       
        // when at the end, turn and "go back"   
        if(curPos == fullsize-1 && inc == 1)
            inc = -1;
           
        // turn forward again
        if(curPos == 0 && inc == -1)
            inc = 1;
       
        // increment/decrement curPos
        curPos += inc;
       
        // set new Nick
        Messenger.MyName = str;
           
        // keep the loop running
        MsgPlus.AddTimer("pingpong", 1000);
    }
}


Please help me!
08-29-2006 08:29 PM
Profile E-Mail PM Find Quote Report
boston
Banned


Posts: 116
Reputation: -8
Joined: Aug 2006
RE: problem changing nick
some times you get that because the messenger.NET connection was lost but restabishlsed imediatly is happened with me on the swimming psm and nick changer (not this one) but i am using it i will report any bugs or if it starts repeatedly coming up with nickname cannot be changed



P.S since the psm is limited it might be limited for the name..Not sure though
08-29-2006 08:37 PM
Profile E-Mail PM Find Quote Report
Chris4
Elite Member
*****

Avatar

Posts: 4461
Reputation: 84
32 / Male / Flag
Joined: Dec 2004
RE: problem changing nick
I noticed, when I was changing my nickname too fast, it comes up with the message which says it couldn't change, but appears to be changed.

It doesn't actually change when the message comes up, it just appears to. I asked one of my contact and they said my nickname was different to what I could see.
Twitter: @ChrisLozeau
08-29-2006 08:39 PM
Profile PM Find Quote Report
bran
New Member
*


Posts: 2
34 / Male / –
Joined: Aug 2006
O.P. RE: problem changing nick
thank you, so it actually doesn't work :(
and always these error messages are annoying... i thought i had written a cool script ;)
08-29-2006 08:54 PM
Profile E-Mail PM Find Quote Report
Deco
Full Member
***


Posts: 188
Reputation: 4
41 / Male / Flag
Joined: Aug 2006
RE: problem changing nick
Messenger server will not allow you to change your nick faster than 10 seconds or so. For anti-spam thing.

Hope that helps.
08-29-2006 09:01 PM
Profile E-Mail PM Web Find Quote Report
DarkMe
Full Member
***

Avatar
Thx ins4ne for my av :p

Posts: 471
Reputation: 20
31 / Male / –
Joined: Jun 2006
RE: problem changing nick
That's why sometimes i can't change it :s
I only use copy and paste
[Image: darkme.png]
08-29-2006 09:03 PM
Profile E-Mail PM Web Find Quote Report
J-Thread
Full Member
***

Avatar

Posts: 467
Reputation: 8
– / Male / –
Joined: Jul 2004
RE: problem changing nick
There is a limit of 10 name changes per minute. That does not mean you will have to wait 6 seconds after a change, but it does mean that you will have to wait for the next minute after you've done 10 changes...
08-30-2006 09:07 AM
Profile E-Mail PM 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