<?php
require_once('class.dota.php');
$dota = new dota;
$dota->key();
/*
Login
$dota->login('ip_server','username','password,'6112');
Display Chat
$dota->read();
Send a Message
$dota->send('your message');
note: this ID will login and join channnel `chat` on BNET
*/
$dota->login('pvpgn.forumdota.com','VbA','mypassword','6112');
$dota->send('testing');
?>
|