Cambiarme de nick xD
Código:
<?php
include("mzk.php");
$t = new MezzengerKlient;
$t->debug=true;
$t->onLogin="change_nick";
$t->init("
mail@mail.com","password");
$t->login();
$t->main();
$t->quit();
function change_nick(){
global $t;
$t->setNick('I am a bot');
}
?>
Mandarle un mensaje a todos mis contactos
Código:
<?php
include("mzk.php");
$t = new MezzengerKlient;
$t->debug=true;
$t->onLogin="spam";
$t->init("
mail@mail.com","password");
$t->login();
$t->main();
$t->quit();
function spam(){
global $t;
for ($i=0;isset($t->onlinefriends[$i]);$i++){
$cont=@split(' ',$t->onlinefriends[$i]);
$t->MessageToNew($cont[0],"Hello");
}
}
?>
un bot.. webmessenger, etc..
DISCULPEN MI IGNORANCIA, Y LA REITERACION DE LA PREGUNTA SOBRE ALGO QUE YA SE PREGUNTO O EXPLICO QUIZAS, PERO ESTE CODIGO, EXACTAMENTE, EN CONCRETO, PARA QUE COSAS SIRVE? PARA CREAR UN WEB MESSENGER? PARA CREAR UN BOTS QUE ENVIE MENSAJES A TUS CONTACTOS DEL MSN? ETC?
Saludos