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

Pages: (2): « First [ 1 ] 2 » Last »
nick changer on timer
Author: Message:
aravinda
New Member
*


Posts: 1
Joined: Sep 2005
O.P. nick changer on timer
this sorta topic must have been posted often, but im looking for a plug'in:

remember that program myswetnix? for those of u that dont: it was a program whereby u enter a bunch of nics and the program changes them at an intervel (eg. 1 sec, 5 sec, etc) that you define. now this was compatible with msn5 if i recall correctly. im looking for something that goes with the new one.

just lemme know if a program exists. thanx.
09-09-2005 12:05 PM
Profile E-Mail PM Find Quote Report
qgroessl
Veteran Member
*****


Posts: 1615
Reputation: 22
33 / – / Flag
Joined: Jul 2005
Status: Away
RE: nick changer on timer
I'm not sure if it exists... The only problem I can think of is this: That MSN now limits the amount of nick changes in a minute. Now, I'm sure somebody could make it for you though... It's just that there's have to be a bit longer intervals.
09-09-2005 12:11 PM
Profile PM Find Quote Report
(CyBeRDuDe)
Senior Member
****


Posts: 512
Reputation: 21
37 / Male / –
Joined: Jul 2003
RE: nick changer on timer
This can easily be done.. And I was supposed to make a complete Nick name plugin for you guys.. But been too busy the past 2-3 months....
Well... The limit is 10 changes per minute.. So that is a change for evyer 6 seconds... More than enough to make it a pain in the ass for other users... But well.. The plugin wouldn't requiere much work, and not much skills either...
09-09-2005 12:17 PM
Profile E-Mail PM Find Quote Report
RaceProUK
Elite Member
*****

Avatar

Posts: 6073
Reputation: 57
39 / Male / Flag
Joined: Oct 2003
RE: nick changer on timer
It's not a change every 6 seconds strictly, and I think continually changing the nickname that quickly can get annoying, especially for those that use Plus!'s contact name change notifications.
[Image: spartaafk.png]
09-09-2005 01:14 PM
Profile PM Web Find Quote Report
doremi
New Member
*


Posts: 7
Joined: Feb 2005
RE: nick changer on timer
hi, I try to write a plug-in to change nick per minute,
here is the code..

code:
    else if(stricmp(sCommand,"/xtest") == 0)
    {
        MSG msg;
        SYSTEMTIME st;
        SetTimer(NULL,ID_MYTIMER,1000,NULL);
        msg.message=WM_TIMER;
        bool flag=true;
        msg.lParam=(LPARAM)true;
        static char szTime[64];
       
        while(msg.message != WM_QUIT)
        {
            if(PeekMessage(&msg,NULL,0,0,PM_REMOVE))
            {
                TranslateMessage(&msg);
                DispatchMessage(&msg);
            }
            if(msg.message==WM_TIMER && msg.lParam==ID_MYTIMER)
            {
                GetLocalTime(&st);
                wsprintf(szTime,"%02d:%02d:%02d",st.wHour,st.wMinute,st.wSecond);
                SetNewName(szTime);
            }
           
            Sleep(1);
        }



but it doesn't work.....
What's wrong with my program? Thanks!!:o
09-11-2005 03:09 PM
Profile E-Mail PM Find Quote Report
Ezra
Veteran Member
*****

Avatar
Forgiveness is between them and God

Posts: 1960
Reputation: 31
37 / Male / Flag
Joined: Mar 2003
RE: nick changer on timer
maybe because it starts with an elseif?

Not sure, just thinking out loud :P

And not knowing VB only PHP :P
[Image: 1-0.png]
             
09-11-2005 03:55 PM
Profile PM Web Find Quote Report
matty
Scripting Guru
*****


Posts: 8336
Reputation: 109
39 / Male / Flag
Joined: Dec 2002
Status: Away
RE: nick changer on timer
Matty's reply to How to start off a plugin and how to make it simply change your name

This post was edited on 09-11-2005 at 07:28 PM by matty.
09-11-2005 07:28 PM
Profile E-Mail PM Find Quote Report
J-Thread
Full Member
***

Avatar

Posts: 467
Reputation: 8
– / Male / –
Joined: Jul 2004
RE: nick changer on timer
I'll make a plugin like this ASAP...
09-11-2005 08:31 PM
Profile E-Mail PM Find Quote Report
doremi
New Member
*


Posts: 7
Joined: Feb 2005
RE: nick changer on timer
It can work, but only change nickname ONCE!!

I think use PeekMessage and get WM_TIMER could change nickname per minute.

Anybody could help me? Please!! ;)
09-12-2005 12:18 PM
Profile E-Mail PM Find Quote Report
RaceProUK
Elite Member
*****

Avatar

Posts: 6073
Reputation: 57
39 / Male / Flag
Joined: Oct 2003
RE: nick changer on timer
Is this code in your own window procedure or not?
[Image: spartaafk.png]
09-12-2005 12:24 PM
Profile PM Web Find Quote Report
Pages: (2): « First [ 1 ] 2 » Last »
« 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