|
| Author |
Message |
Kid4 Newbie

Joined: 04 Sep 2005 Posts: 5
        
|
Posted: Sat Sep 24, 2005 4:50 pm Post subject: MSNP11 |
|
|
MSNP11
Just a download, dont know information!
[url]http://80.195.23.199/dl/MSNP11 PSM.zip[/url] |
|
| Back to top |
|
 |
dubbeld00 Newbie

Joined: 24 Aug 2005 Posts: 5
        
|
|
| Back to top |
|
 |
zander God Like

Joined: 14 Jan 2004 Posts: 540 Location: england
 
|
Posted: Mon Sep 26, 2005 8:03 am Post subject: |
|
|
| i cant downliad it to check it out most likely becasue your running your server from your home computer thats stupid.... cos people can only download when your online, email me --> crim2k5[at]aol.com and i will put it on my website so people can download it |
|
| Back to top |
|
 |
dubbeld00 Newbie

Joined: 24 Aug 2005 Posts: 5
        
|
|
| Back to top |
|
 |
Cer Upgraded Agent

Joined: 03 Feb 2004 Posts: 3776 Location: Michigan
  votes: 4
|
Posted: Mon Sep 26, 2005 5:12 pm Post subject: |
|
|
When using this module:
-- Useless server messages get printed on events such as typing or message receiving (assuming debug stuff that just needs to be commented out).
-- sendMessage with \n's wouldn't work, it would just not do \n's at all and send everything in one line to the user.
-- setPSMData wasn't working for me either. _________________ Current Site (2008) http://www.cuvou.com/ |
|
| Back to top |
|
 |
mattaustin Sentinel

Joined: 19 Jul 2004 Posts: 556 Location: Los Angeles, CA
  votes: 1
|
Posted: Mon Sep 26, 2005 6:27 pm Post subject: |
|
|
i posted this as a development module..... I really dont have time, but if anyone wants to fix these things and make a stable version fell free.
btw: i have seen any issues with setPSMData others have gotten it to work |
|
| Back to top |
|
 |
dubbeld00 Newbie

Joined: 24 Aug 2005 Posts: 5
        
|
Posted: Mon Sep 26, 2005 6:38 pm Post subject: |
|
|
Also not working:
-- File transfer with files not in root this is caused by:
$utf_file = pack("S*", unpack("C*", $filename), 0); (file p2p.pm)
This doesn't allow you to unpack $filename that's not in root... so you first have to chdir to the directory, and then go back to the root
so something like:
chdir($filepath);
$utf_file = pack("S*", unpack("C*", $filename), 0);
chdir("../../"); (to go back to your root)
-- It will crash if a person change his Personal message. This will send a </data> without \r\n.
In MSN.PM it splits on \r\n.
so you can get: <Data><PSM>dd</PSM><CurrentMedia></CurrentMedia></Data>QNG 22\r\n
Now the QNG command won't be reconized by the perl script, and it won't send a reply back... So after 30 seconds your bot will be disconnected. |
|
| Back to top |
|
 |
|