[Request] Relay messages. |
Author: |
Message: |
sno
Junior Member
Posts: 65
Joined: Oct 2005
|
O.P. [Request] Relay messages.
i wish to relay all messages from 1 pc's msn account to my msn addy i use on another pc. aswell as give the user from the other msn list a message stating that the conversation has been relayed to the other person...
would this be possible, i know of the "Linked Chats" but i want 1 for the whole contact list, as the other pc dosnt have a monitor attached....
|
|
09-10-2006 12:44 PM |
|
|
xxhannahxx
Junior Member
Previously known as xx134xx
Posts: 19 Reputation: -2
30 / / –
Joined: Sep 2006
|
RE: [Request] Relay messages.
yh that we be good
|
|
09-10-2006 12:51 PM |
|
|
markee
Veteran Member
Posts: 1622 Reputation: 50
36 / /
Joined: Jan 2006
|
RE: [Request] Relay messages.
Why don't you just use polygamy (avaliable in the MP!L preferences) and run both of the accounts from the computer that you are using?
|
|
09-10-2006 12:52 PM |
|
|
sno
Junior Member
Posts: 65
Joined: Oct 2005
|
O.P. RE: [Request] Relay messages.
becuase wlm dosnt like polygamy, and either 1 or both of the clients crash.
|
|
09-10-2006 01:35 PM |
|
|
cloudhunter
Senior Member
Posts: 536 Reputation: 18
37 / – / –
Joined: Dec 2005
|
RE: [Request] Relay messages.
quote: Originally posted by sno
becuase wlm dosnt like polygamy, and either 1 or both of the clients crash.
I've used polygamy many times before with plus and any number of plugins. You must have some other software that doesn't like it. I believe there is something that can do similar, but i can't remember its name :/
Failing that, log in with something like GAIM or any number of unofficial msn clients.
Cloudy
Sig by pirateok/marisaok/marisa
quote: Originally posted by Moulin Rouge
The greatest thing you'll ever learn, is just to love and be loved in return
6909 days, 18 hours, 51 minutes, 15 seconds ago
|
|
09-10-2006 11:10 PM |
|
|
sno
Junior Member
Posts: 65
Joined: Oct 2005
|
O.P. RE: [Request] Relay messages.
i dont want to use an unofficial client, i just want a simple script. its not too hard to ask.
|
|
09-11-2006 07:41 AM |
|
|
markee
Veteran Member
Posts: 1622 Reputation: 50
36 / /
Joined: Jan 2006
|
RE: [Request] Relay messages.
quote: Originally posted by sno
i dont want to use an unofficial client, i just want a simple script. its not too hard to ask.
It is a lot of work for something that you can do in other ways. That is the reason why we haven't done it but go ahead and make it yourself and will might give you some help if you have some troubles (I don't think anyone would want to write this for you as they would have no use for it themselves).
|
|
09-11-2006 08:03 AM |
|
|
Spunky
Former Super Mod
Posts: 3658 Reputation: 61
36 / /
Joined: Aug 2006
|
RE: [Request] Relay messages.
quote: Originally posted by sno
its not too hard to ask.
Then why not reserach how to do it and make it yourself?
I don't think it would be very ethical to make a script like this. I had an idea to do it, but it can be misused to send your conversation with one person to another person without their knowledge. Why not use Messenger 7.5 as well as WLM if you don't want to use an unofficial client to do the job? Also, I constantly use polygamy with WLM and I've never had a problem
<Eljay> "Problems encountered: shit blew up"
|
|
09-11-2006 08:03 AM |
|
|
sno
Junior Member
Posts: 65
Joined: Oct 2005
|
O.P. RE: RE: [Request] Relay messages.
quote: Originally posted by SpunkyLoveMuff
Then why not reserach how to do it and make it yourself?
but it can be misused to send your conversation with one person to another person without their knowledge.
quote: Originally posted by sno
aswell as give the user from the other msn list a message stating that the conversation has been relayed to the other person...
if i had the time to research into makin it i would, but i havnt.
|
|
09-11-2006 09:05 AM |
|
|
Spunky
Former Super Mod
Posts: 3658 Reputation: 61
36 / /
Joined: Aug 2006
|
RE: [Request] Relay messages.
code: var tmpString="tmp";
var sAccount = Messenger.MyContacts.GetContact("YOUR 2ND ACCOUNT'S EMAIL HERE")
function OnEvent_ChatWndReceiveMessage(ChatWnd, Origin, Message){
ChatWnd.SendMessage("Messages are being forwarded to: "+sAccount.Email;
if(Origin!=Messenger.MyName&&Origin!=sAccount.Name&&tmpString!=""){
tmpString = MsgPlus.RemoveFormatCodes(Origin)+" says: "+ Message
sAccountChatWnd = Messenger.OpenChat(sAccount.Email);
sAccountChatWnd.SendMessage(tmpString);
}
tmpString = "";
}
function OnEvent_ChatWndSendMessage(ChatWnd, Message){
ChatWnd.SendMessage("Messages are being forwarded to: "+sAccount.Email;
if(tmpString!=""){
tmpString = MsgPlus.RemoveFormatCodes(Messenger.MyName)+" says: "+ Message
sAccountChatWnd = Messenger.OpenChat(sAccount.Email);
sAccountChatWnd.SendMessage(tmpString);
tmpString = "";
}
}
I had some time spare so thought I'd do you a favour...
So far it's not tested, but should work
EDIT: To work, you will need to add your 2nd account to your contact list on your first account
This post was edited on 09-11-2006 at 11:47 AM by Spunky.
<Eljay> "Problems encountered: shit blew up"
|
|
09-11-2006 11:46 AM |
|
|
Pages: (2):
« First
[ 1 ]
2
»
Last »
|
|