I have my bot running (it is a windrop) and keep getting this error
[10:35] Telnet connection: langhost.com/38700
[10:35] Lost connection while identing [langhost.com/38700]
set protect-telnet 1 and I used .+host
what is the best way to troubleshoot this or am I missing something?
my script on the board passes the info to the bot so I don't understand what is going wrong...
here is a piece of the PHP script to communicate with the bot:
$egg=@fsockopen($data[0],$data[1]);
socket_set_blocking($egg,FALSE);
fputs($egg, "{$data[2]}\n");
fputs($egg, "{$data[3]}\n");
fputs($egg, ".say {$data[4]} $mystring\n");
fputs($egg, ".quit\n");
fread($egg,4096);
fclose($egg);
data0=IP data1=port data2=user data3=pass data4=channel
I used my username on the channel to try and connect..
Thanks in advance