This tut can be usefull for creating a bot that workes with nuconnector
In visual basic 2006 !
So here it comes
Start with opening vb6
Now open Standard EXE
Now look at the right and right mouse click there
And Choose Compoments
Now Scroll down till Microsoft Winsock Control 6.0
And Check it !
And click ok
Now Add 2 off those Winsock things !
Ok Now the fun part starts
Now rename the first one to "WsCon" ( Without the ")
Now rename the second one to "WsServ" ( Without the ")
Now change the port of wsServ to 1566
Now Double Click the form1
And type : wsServ.lisen
Now Let's make a textbox
Dont need pic for that
Make the multiline to True
And remove the text
Now create 2 Command Buttons
the first one with "Connect"
And the second on with "DisConnect"
Now double click the connect button and type
wscon.connect "127.0.0.1", 1566
Now double click the wsCon
And Right Above u'll see Error now go to connect.
Then delete the line below it !
Now type in wsCon_Connect()
txt1.text = text1.text & "Succesfully Connected" &Vbcrlf
Now Close that code
now double click disconnect and type in
wsCon.close
thats all for that now
Now close that code and double click wsServ
U'll see right above error again
Now go to Connection Requested and delete the line below
Type in the Connection Requested now :
If wsServ.state <> sckclosed then
wsServ.close
wsServ.accept requestiD
End if
So now thats done
Now double click the Dissconnect button and type there :
txt1.text = text1.text & "Succesfully DisConnected" &Vbcrlf
This must below to the Wscon.close
Now Start Program and test
GL yaáll !
EDIT:
Added source code..
Would be so mutch easyer for some users






