Here is my ParseData sub.
It was just a test to see if I received the packets correctly.
It was just a test to see if I received the packets correctly.
Code Select
Public Sub ParseData(PacketID As Long)
'Parsing
Select Case PacketID
Case &H25
AddChat vbYellow, "Received: 0x25"
Case &H50
AddChat vbYellow, "Received: 0x50"
End Select
End Sub