Valhalla Legends Archive

Programming => Battle.net Bot Development => Battle.net Bot Development References => Topic started by: Archangel on April 24, 2005, 11:09 PM

Title: [MCP] Master Control Program Sequence
Post by: Archangel on April 24, 2005, 11:09 PM
Master Control Program (MCP) Sequence By ArchAngel
----------------------------------------------------

BNCS:
   [C->S] 0x40 SID_QUERYREALMS2 (http://bnetdocs.valhallalegends.com/content.php?Section=m&Code=395)
   [S->C] 0x40 SID_QUERYREALMS2 (http://bnetdocs.valhallalegends.com/content.php?Section=m&Code=394)
   [C->S] 0x3E SID_LOGONREALMEX (http://bnetdocs.valhallalegends.com/content.php?Section=m&Code=14)
   [S->C] 0x3E SID_LOGONREALMEX (http://bnetdocs.valhallalegends.com/content.php?Section=m&Code=15)

Connect the MCP Socket to the realm with the SID_LOGONREALMEX information.
When connected, you need to send the protocol byte (0x01).

Code:

Socket.SendData Chr(1)


MCP:
   [C->S] 0x01 MCP_STARTUP (http://bnetdocs.valhallalegends.com/content.php?Section=m&Code=93)
   [S->C] 0x01 MCP_STARTUP (http://bnetdocs.valhallalegends.com/content.php?Section=m&Code=94)
   [C->S] 0x19 MCP_CHARLIST2 (http://bnetdocs.valhallalegends.com/content.php?Section=m&Code=101)
   [S->C] 0x19 MCP_CHARLIST2 (http://bnetdocs.valhallalegends.com/content.php?Section=m&Code=102)
   [C->S] 0x07 MCP_CHARLOGON (http://bnetdocs.valhallalegends.com/content.php?Section=m&Code=97)
   [S->C] 0x07 MCP_CHARLOGON (http://bnetdocs.valhallalegends.com/content.php?Section=m&Code=98)

[Enter Chat]
BNCS:
   [C->S] 0x0A SID_ENTERCHAT (http://bnetdocs.valhallalegends.com/content.php?Section=m&Code=32)

Packet Header:
   (WORD)      Message length, including this header
   (BYTE)      Message ID
   (VOID)      Message Data

Code:

Public Function sendRealmPacket(PacketID As Byte, Index As Integer)
    If Socket.State <> sckConnected Then: ClearBuffer: Exit Function
        Socket.SendData MakeWORD(Len(Buffer) + 3) & Chr(PacketID) & Buffer
        ClearBuffer
End Function


*Edit: Added BNETDOCS (http://bnetdocs.valhallalegends.com/) links for packets.