Hi, this is the first time that i make a tool for darkorbit using winsock, for that reason i need some help, someone could help me? the problem is that i dont know how to send hexadecimal packets...
i have this code:
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
winsock.Close()
winsock.RemoteHost = "216.151.181.38" 'DARKORBIT CHAT
winsock.RemotePort = 9338
winsock.LocalPort = 27807
winsock.Connect()
End Sub
Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
winsock.SendData("a%273%Test@") 'TEXT TO SEND
End Sub
But i need to add some hexadecimal code (0A) at the last of these ("a%273%Test@") because i need that the server reseve these 61 25 32 37 33 25 70 72 75 65 76 61 40 0A but the 0A is the problem, i hope that someone could help me thanks :)
the purpose of my tool is that you can write in all chats of all companies using only one account
Thanks and sorry for my bad English :bandit:
Or someone can give me a better idea of how to do it using visual basic =)
i have this code:
Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
winsock.Close()
winsock.RemoteHost = "216.151.181.38" 'DARKORBIT CHAT
winsock.RemotePort = 9338
winsock.LocalPort = 27807
winsock.Connect()
End Sub
Private Sub Button2_Click(sender As Object, e As EventArgs) Handles Button2.Click
winsock.SendData("a%273%Test@") 'TEXT TO SEND
End Sub
But i need to add some hexadecimal code (0A) at the last of these ("a%273%Test@") because i need that the server reseve these 61 25 32 37 33 25 70 72 75 65 76 61 40 0A but the 0A is the problem, i hope that someone could help me thanks :)
the purpose of my tool is that you can write in all chats of all companies using only one account
Thanks and sorry for my bad English :bandit:
Or someone can give me a better idea of how to do it using visual basic =)