Can u use the same winsock plugin for more than 1 connection to battle.net at a time? (loading more than 1 bot though same connection)
Assuming you're using VB:
You could set the 'Index' property of your winsock to 0, and then dynamicly Load new winsock controls:
Dim numSocks as Long
Sub addSocket()
numSocks = numSocks + 1
Load myWinsock(numSocks)
End Sub
If you take this approach, you will need to rebuild all of that winsock's events as the Index paramater must be added.
ok thanks