hello, i am trying to get my bot to listen for any information coming in on port 90. i did "/socklisten webserver 90" and it seems to be in use, so to test it i try to make a simple script in a second mirc client (it's on a different computer and network) but i don't see any echo of an incoming request. please tell me if anything's wrong
client listening:
on *:socklisten:Webserver:{
echo -s hi
sockaccept Webcon $+ $rand(1,99999) }
client trying to test:
alias sock {
sockclose name
sockopen name [ip] 90
}
on *:sockopen:name: {
sockwrite -n name test
}