View previous topic :: View next topic |
Author |
Message |
FreezingFire Admin Team

Joined: 23 Jun 2002 Posts: 3508
|
Posted: Tue Jun 22, 2004 5:00 pm Post subject: |
|
|
I agree.
_________________ FreezingFire
VDSWORLD.com
Site Admin Team |
|
Back to top |
|
 |
Skit3000 Admin Team

Joined: 11 May 2002 Posts: 2166 Location: The Netherlands
|
|
Back to top |
|
 |
marty Professional Member


Joined: 10 May 2001 Posts: 789
|
Posted: Wed Jun 23, 2004 11:39 am Post subject: |
|
|
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 |
|
 |
Skit3000 Admin Team

Joined: 11 May 2002 Posts: 2166 Location: The Netherlands
|
Posted: Wed Jun 23, 2004 2:01 pm Post subject: |
|
|
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 |
|
 |
Vic D'Elfant Past Contributor


Joined: 26 Jun 2002 Posts: 673 Location: The Netherlands
|
|
Back to top |
|
 |
Vic D'Elfant Past Contributor


Joined: 26 Jun 2002 Posts: 673 Location: The Netherlands
|
|
Back to top |
|
 |
Garrett Moderator Team
Joined: 04 Oct 2001 Posts: 2149 Location: A House
|
Posted: Wed Jun 23, 2004 5:27 pm Post subject: |
|
|
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 |
|
 |
Skit3000 Admin Team

Joined: 11 May 2002 Posts: 2166 Location: The Netherlands
|
|
Back to top |
|
 |
Vic D'Elfant Past Contributor


Joined: 26 Jun 2002 Posts: 673 Location: The Netherlands
|
Posted: Wed Jun 23, 2004 6:27 pm Post subject: |
|
|
Oops 
_________________ phpBB Development Team |
|
Back to top |
|
 |
LiquidCode Moderator Team
Joined: 05 Dec 2000 Posts: 1752 Location: Space and Time
|
Posted: Wed Jun 23, 2004 7:41 pm Post subject: |
|
|
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 |
|
 |
|