Valhalla Legends Archive

Programming => Battle.net Bot Development => Topic started by: Racial on August 26, 2008, 12:29 PM

Title: [MCP] Parse0x04 to connect to D2GS
Post by: Racial on August 26, 2008, 12:29 PM
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?
Title: Re: [MCP] Parse0x04 to connect to D2GS
Post by: brew on August 26, 2008, 12:49 PM
Like I said: Check out ws2_32's inet_ntoa() (http://msdn.microsoft.com/en-us/library/ms738564(VS.85).aspx).