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 |
|
|
qgroessl
Veteran Member
Posts: 1615 Reputation: 22
33 / – /
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 |
|
|
(CyBeRDuDe)
Senior Member
Posts: 512 Reputation: 21
38 / / –
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 |
|
|
RaceProUK
Elite Member
Posts: 6073 Reputation: 57
39 / /
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.
|
|
09-09-2005 01:14 PM |
|
|
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!!
|
|
09-11-2005 03:09 PM |
|
|
Ezra
Veteran Member
Forgiveness is between them and God
Posts: 1960 Reputation: 31
37 / /
Joined: Mar 2003
|
RE: nick changer on timer
maybe because it starts with an elseif?
Not sure, just thinking out loud
And not knowing VB only PHP
|
|
09-11-2005 03:55 PM |
|
|
matty
Scripting Guru
Posts: 8336 Reputation: 109
39 / /
Joined: Dec 2002
Status: Away
|
RE: nick changer on timer
This post was edited on 09-11-2005 at 07:28 PM by matty.
|
|
09-11-2005 07:28 PM |
|
|
J-Thread
Full Member
Posts: 467 Reputation: 8
– / / –
Joined: Jul 2004
|
RE: nick changer on timer
I'll make a plugin like this ASAP...
|
|
09-11-2005 08:31 PM |
|
|
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 |
|
|
RaceProUK
Elite Member
Posts: 6073 Reputation: 57
39 / /
Joined: Oct 2003
|
RE: nick changer on timer
Is this code in your own window procedure or not?
|
|
09-12-2005 12:24 PM |
|
|
Pages: (2):
« First
[ 1 ]
2
»
Last »
|
|