I'm working on some prjects that connects to a website and takes some informaion of it but i hove one with ht access how can i pu that in my script? cous it wouldn't work :s
Code:
on *:sockopen:mbtop10:{
  sockwrite -nt $sockname GET $+(http://my_site/index.php) HTTP/1.1 
  sockwrite -nt $sockname Accept-Language: en-us
  sockwrite -nt $sockname User-Agent: Mozilla/??
  sockwrite -nt $sockname Host:  my_site
  sockwrite -nt $sockname Port:  site_port
  sockwrite -nt $sockname Login:  site_login
  sockwrite -nt $sockname Password:  site_pass
  sockwrite -nt $sockname Proxy-Connection: Keep-Alive
  sockwrite -nt $sockname Connection: Keep-Alive
  sockwrite -t $sockname $str($crlf,2)
}  

sockwrite -nt $sockname GET $+(http://site_login:site_pass@my_site:site_port/index.php)
that is also not working frown

Last edited by Gods_Hell; 03/07/03 09:23 PM.