dminting Posted August 20, 2008 Posted August 20, 2008 Hi everyone, i'm new to the forums and autoit scripting, However i've jumped a little bit into the deep end already and i'm looking to be able to send and receive packets to and from a srcds (Source Dedicated Server). I have successfully applied the below which works... TCPStartUp() $ip="192.168.0.33" $port="27015" $tcp=TCPConnect($ip,$port) TCPSend($tcp,"COMMAND TO SEND " & @crlf) TCPRecv( $tcp, 2048 ) But unfortunatly to work with srcds i need to send a packet of a certain size with a password which will then authenticate me. Any help would be appreciated
JFee Posted August 20, 2008 Posted August 20, 2008 I'm not clear on how it is any different than normally sending and receiving TCP packets. Have you successfully transmitted data yet? Regards,Josh
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now