[reguest] log out script?? |
Author: |
Message: |
jamiewarne123
New Member
Posts: 8
Joined: Nov 2006
|
O.P. [reguest] log out script??
hi im wondering if there is such a script that says 'bye' to all your contacts when you log out of msn, if so can you post download link ot site link, thx in advance.
|
|
11-06-2006 06:43 PM |
|
|
Matti
Elite Member
Script Developer and Helper
Posts: 1646 Reputation: 39
32 / /
Joined: Apr 2004
|
RE: [reguest] log out script??
Well, in theory this wouldn't be a very difficult script, you just have to send a message when the OnEvent_Signout event is triggered. But what do you mean with all contacts?
- all online contacts on your list
- all not-offline contacts on your list
- all opened conversations at that moment
|
|
11-06-2006 07:00 PM |
|
|
jamiewarne123
New Member
Posts: 8
Joined: Nov 2006
|
O.P. RE: [reguest] log out script??
all online contacts, and how difficult would this be to code
|
|
11-06-2006 07:06 PM |
|
|
elektra
Full Member
aka quacky
Posts: 210 Reputation: -3
– / / –
Joined: Jul 2006
|
RE: [reguest] log out script??
quote: Originally posted by jamiewarne123
all online contacts, and how difficult would this be to code[/q]
I think it would be best for it to be all open chats, and it would be quite hard to code for every online contact
|
|
11-06-2006 07:07 PM |
|
|
jamiewarne123
New Member
Posts: 8
Joined: Nov 2006
|
O.P. RE: [reguest] log out script??
so have i come up with a good idea, i have no coding experience so any people willing to code this please go ahead.
|
|
11-06-2006 07:11 PM |
|
|
Oxy
Veteran Member
Posts: 1368 Reputation: 24
30 / /
Joined: Jul 2006
|
RE: [reguest] log out script??
quote: Originally posted by penguindude
I think it would be best for it to be all open chats
Yes, because
1) smaterchild will get annoying sooner or later
2) people who you didn't talk to will think 'WTF'
I'm sure this shouldn't be too hard for someone to code, it should be somewhat similar to the script which when you type "brb" it will set status to Be right back.. but it might be easier to work with the /signout command rather than the other way..
see penguindude, i can use quote codes properly
This post was edited on 11-06-2006 at 07:15 PM by Oxy.
|
|
11-06-2006 07:12 PM |
|
|
Ezra
Veteran Member
Forgiveness is between them and God
Posts: 1960 Reputation: 31
37 / /
Joined: Mar 2003
|
RE: [reguest] log out script??
quote: Originally posted by penguindude
quote: Originally posted by jamiewarne123
all online contacts, and how difficult would this be to code
I think it would be best for it to be all open chats, and it would be quite hard to code for every online contact
You suck at quoting
About the script, if would be very easy to make, but I think it would also be very annoying to send a message to every online contact, it's better to send it to all opened windows. (I would block you if you sent me that message everytime you logged out )
code: var Message = "Bye Bye";
function OnEvent_Signout(Email)
{
for(e = new Enumerator(Messenger.CurrentChats); !e.atEnd(); e.moveNext())
{
if (e.item().EditChangeAllowed)
{
ChatWnd.SendMessage(Message);
}
}
}
Even this will get annoying...
This post was edited on 11-06-2006 at 07:17 PM by Ezra.
|
|
11-06-2006 07:13 PM |
|
|
jamiewarne123
New Member
Posts: 8
Joined: Nov 2006
|
O.P. RE: [reguest] log out script??
ya that sounds better actually, send a custom message to all open windows when sgining out. omg u finished it already
|
|
11-06-2006 07:16 PM |
|
|
foaly
Senior Member
Posts: 718 Reputation: 20
38 / /
Joined: Jul 2006
|
RE: [reguest] log out script??
quote: Originally posted by Ezra
code: var Message = "Bye Bye";
function OnEvent_Signout(Email)
{
for(e = new Enumerator(Messenger.CurrentChats); !e.atEnd(); e.moveNext())
{
if (e.item().EditChangeAllowed)
{
ChatWnd.SendMessage(Message);
}
}
}
how can you send a message when you just signed out?
or do you stay signed in untill OnEvent_Signout is parsed?
This post was edited on 11-06-2006 at 07:22 PM by foaly.
|
|
11-06-2006 07:19 PM |
|
|
jamiewarne123
New Member
Posts: 8
Joined: Nov 2006
|
O.P. RE: [reguest] log out script??
just before u log out then
im am very suprised to how active this forum is, u are all very helpfull and quik at making scripts
|
|
11-06-2006 07:20 PM |
|
|
Pages: (2):
« First
[ 1 ]
2
»
Last »
|
|