Dim Result As Long
'(WORD) Request ID
'(WORD) Game token
'(WORD) Unknown (0)
'(DWORD) IP of D2GS Server
'(DWORD) Game hash
'(DWORD) Result
ReqID = pDebuffer.DebuffWORD
GameToken = pDebuffer.DebuffWORD
UnknownWord = pDebuffer.DebuffWORD
D2GSIP = pDebuffer.DebuffDWORD
GameHash = pDebuffer.DebuffDWORD
Result = pDebuffer.DebuffDWORD
Select Case Result
Case &H0
wsD2GS.Connect D2GSIP, 4000
I know that this is not correct connecting to D2GS's IP, but i don't know how i am supposed to convert the ip from the Long when i have it. Any functions that can do that already?
Like I said: Check out ws2_32's inet_ntoa() (http://msdn.microsoft.com/en-us/library/ms738564(VS.85).aspx).