forum.vdsworld.com Forum Index forum.vdsworld.com
Visit VDSWORLD.com
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 


Connecting to MSN Messenger Service (version 2)
Goto page Previous  1, 2
 
Post new topic   Reply to topic    forum.vdsworld.com Forum Index -> Visual DialogScript Open Source Projects
View previous topic :: View next topic  
Author Message
FreezingFire
Admin Team


Joined: 23 Jun 2002
Posts: 3508

PostPosted: Tue Jun 22, 2004 5:00 pm    Post subject: Reply with quote

I agree. Smile
_________________
FreezingFire
VDSWORLD.com
Site Admin Team
Back to top
View user's profile Send private message Visit poster's website
Skit3000
Admin Team


Joined: 11 May 2002
Posts: 2166
Location: The Netherlands

PostPosted: Wed Jun 23, 2004 8:17 am    Post subject: Reply with quote

Some examples made with PHP can be found here:

http://www.msnfanatic.com/index.php?module=fatcat&fatcat%5buser%5d=viewCategory&fatcat_id=20&module_title=pagemaster

I guess most of them are easy to convert, so I'll look into it this week... Smile

_________________
[ Add autocomplete functionality to your VDS IDE windows! ]
Voor Nederlandse beginners met VDS: bekijk ook eens deze tutorial!
Back to top
View user's profile Send private message
marty
Professional Member
Professional Member


Joined: 10 May 2001
Posts: 789

PostPosted: Wed Jun 23, 2004 11:39 am    Post subject: Reply with quote

Interesting site! Im like Garrett, would love easily make an MSN clone with VDS... Not necessarly with all the bells and whistles of course. Will also look at that.


Thanks Skit for the info.
Back to top
View user's profile Send private message Send e-mail Visit poster's website MSN Messenger
Skit3000
Admin Team


Joined: 11 May 2002
Posts: 2166
Location: The Netherlands

PostPosted: Wed Jun 23, 2004 2:01 pm    Post subject: Reply with quote

I can't seem to get further then the first message when interacting with the server. Maybe somebody can figure out why?

Code:
external vdsipp.dll
#define command,internet,msn
#define function,internet,msn

msn connect,1,messenger.hotmail.com,1863

:Evloop
wait event
goto @event()

:Tcp1onConnect
msn send,1,VER 0 MSNP8 CVR0
goto Evloop

:Tcp1onMessage
%%message = @msn(message,1)
%%command = @substr(%%message,1,3)

if @equal(%%command,VER)
  msn send,1,"CVR 2 0x0409 win 4.10 i386 MSNMSGR 5.0.0544 MSMSGS example@passport.com"
end
if @equal(%%command,CVR)
  info 2
end

goto Evloop

:Tcp1onSendDone
goto Evloop

:Tcp1onDisconnect
msn close,1
exit

:Close
msn close,1
exit

:msn
if @equal(%1,"CONNECT")
  internet tcp,create,%2
  internet tcp,connect,%2,%3,%4
end
if @equal(%1,"CLOSE")
  internet tcp,disconnect,%2
end
if @equal(%1,"SEND")
  internet tcp,send,%2,%3@cr()@chr(10)
end
if @equal(%1,"MESSAGE")
  exit @internet(tcp,message,%2)
end
exit

_________________
[ Add autocomplete functionality to your VDS IDE windows! ]
Voor Nederlandse beginners met VDS: bekijk ook eens deze tutorial!
Back to top
View user's profile Send private message
Vic D'Elfant
Past Contributor
Past Contributor


Joined: 26 Jun 2002
Posts: 673
Location: The Netherlands

PostPosted: Wed Jun 23, 2004 4:22 pm    Post subject: Reply with quote

Perhaps the attached document can help... Confused

Vic



messengerprotocol.txt
 Description:
MSN Messenger Protocol

Download
 Filename:  messengerprotocol.txt
 Filesize:  49.42 KB
 Downloaded:  1670 Time(s)


_________________
phpBB Development Team
Back to top
View user's profile Send private message Visit poster's website
Vic D'Elfant
Past Contributor
Past Contributor


Joined: 26 Jun 2002
Posts: 673
Location: The Netherlands

PostPosted: Wed Jun 23, 2004 4:26 pm    Post subject: Reply with quote

By the way, I made a (never completed) MSN server some time ago. It
was compatible with the oldest version of Windows Messenger; the one
that comes with WinXP Pro. I never tested it with a newer version though.

Perhaps it's of any use, logging in and receiving the contacts worked I
thought.

Perhaps it would be cool to have our own VDSWORLD MSN Server, so we
can chat with eachother via windows messenger... hmm... I've got an
idea Smile

Vic



MSN Server.zip
 Description:
VDS MSN Server

Download
 Filename:  MSN Server.zip
 Filesize:  15.98 KB
 Downloaded:  1758 Time(s)


_________________
phpBB Development Team
Back to top
View user's profile Send private message Visit poster's website
Garrett
Moderator Team


Joined: 04 Oct 2001
Posts: 2149
Location: A House

PostPosted: Wed Jun 23, 2004 5:27 pm    Post subject: Reply with quote

You know, even one just for us VDS'ers would be fine with me, and like
Marty, it doesn't even need all the bells and whistles. Just about anyone
I would chat with is a regular here at VDS World anyway.

_________________
'What you do not want done to yourself, do not do to others.' - Confucius (550 b.c. to 479 b.c.)
Back to top
View user's profile Send private message
Skit3000
Admin Team


Joined: 11 May 2002
Posts: 2166
Location: The Netherlands

PostPosted: Wed Jun 23, 2004 6:26 pm    Post subject: Reply with quote

Vic wrote:
Perhaps the attached document can help... Confused

Vic


Vic, that document is still for the MSN protocol 1, they're now at 10... Laughing

_________________
[ Add autocomplete functionality to your VDS IDE windows! ]
Voor Nederlandse beginners met VDS: bekijk ook eens deze tutorial!
Back to top
View user's profile Send private message
Vic D'Elfant
Past Contributor
Past Contributor


Joined: 26 Jun 2002
Posts: 673
Location: The Netherlands

PostPosted: Wed Jun 23, 2004 6:27 pm    Post subject: Reply with quote

Oops EmbarassedWink
_________________
phpBB Development Team
Back to top
View user's profile Send private message Visit poster's website
LiquidCode
Moderator Team


Joined: 05 Dec 2000
Posts: 1751
Location: Space and Time

PostPosted: Wed Jun 23, 2004 7:41 pm    Post subject: Reply with quote

I had started a chat system some time ago and I turned over developemnt to ??. Sorry I can't remember. I do still have the original source. If who I gave the source to has worked on it more maybe that can be used. If not, I can attach the source code I have. The last I used it, it worked very well.
_________________
Chris
Http://theblindhouse.com
Back to top
View user's profile Send private message Send e-mail Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic    forum.vdsworld.com Forum Index -> Visual DialogScript Open Source Projects All times are GMT
Goto page Previous  1, 2
Page 2 of 2

 
Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You can attach files in this forum
You can download files in this forum

Twitter@vdsworld       RSS

Powered by phpBB © 2001, 2005 phpBB Group