I'm trying to make msn messenger bot, i want to bot accept all contacts who added me.
I use class from here: http://flumpcakes.co.uk/php/msn-messenger
msnp9.class.php
added to "function rx_data()"
case 'ADD':
$Pieces = explode(" ", $data);
$Email = $Pieces[4];
$this->_put("ADD $this->trID AL $Email $Email");
break;
Output shows ADD some_num AL email@address email@address and then shows connection dropped. 😕 😕