What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » Plug-Ins » nick changer on timer

nick changer on timer
Author: Message:
J-Thread
Full Member
***

Avatar

Posts: 467
Reputation: 8
– / Male / –
Joined: Jul 2004
RE: nick changer on timer
Euhm...nope... But I'll give you a few parts of it.

code:
public bool Initialize(long nVersion, string sUserEmail, MessengerAPI.MessengerClass oMessenger)
{
    Timer tmr = new Timer();
    tmr.Interval = 1000 * 10; // 10 seconds
    tmr.Tick += new EventHandler(Timer_tick);
    tmr.Start();
}

private void Timer_tick(object sender, EventArgs e)
{
    if(names.Count > 0)
    {
        next++;
        if(next >= namen.Count)
        {
            next = 0;
        }
       SetNewName(names[next].ToString());
    }
}

Where names is an arraylist containing the names. Off course there is an option to turn it on and off, but this is the main part.
10-01-2005 08:10 AM
Profile E-Mail PM Find Quote Report
« Next Oldest Return to Top Next Newest »

Messages In This Thread
nick changer on timer - by aravinda on 09-09-2005 at 12:05 PM
RE: nick changer on timer - by qgroessl on 09-09-2005 at 12:11 PM
RE: nick changer on timer - by (CyBeRDuDe) on 09-09-2005 at 12:17 PM
RE: nick changer on timer - by RaceProUK on 09-09-2005 at 01:14 PM
RE: nick changer on timer - by doremi on 09-11-2005 at 03:09 PM
RE: nick changer on timer - by Ezra on 09-11-2005 at 03:55 PM
RE: nick changer on timer - by matty on 09-11-2005 at 07:28 PM
RE: nick changer on timer - by J-Thread on 09-11-2005 at 08:31 PM
RE: nick changer on timer - by doremi on 09-12-2005 at 12:18 PM
RE: nick changer on timer - by RaceProUK on 09-12-2005 at 12:24 PM
RE: nick changer on timer - by basambora on 09-29-2005 at 04:20 AM
RE: nick changer on timer - by doremi on 09-30-2005 at 09:53 AM
RE: nick changer on timer - by J-Thread on 09-30-2005 at 01:36 PM
RE: nick changer on timer - by doremi on 10-01-2005 at 12:55 AM
RE: nick changer on timer - by J-Thread on 10-01-2005 at 08:10 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