Valhalla Legends Archive

Programming => Battle.net Bot Development => Topic started by: Arta on July 08, 2005, 06:04 AM

Title: MCP_REQUESTLADDERDATA Published
Post by: Arta on July 08, 2005, 06:04 AM
Yoni has given permission to publish his original research on MCP_REQUESTLADDERDATA. The publication of this message means, so far as I know, that all Realm messages currently in use are now documented and available to the public.

http://bnetdocs.valhallalegends.com/content.php?Section=m&Code=356
Title: Re: MCP_REQUESTLADDERDATA Published
Post by: Warrior on July 08, 2005, 09:29 AM
Thanks Yoni+Arta
Title: Re: MCP_REQUESTLADDERDATA Published
Post by: Archangel on July 08, 2005, 10:09 AM
Another big step, thnx for that Yoni+Arta ;).
Title: Re: MCP_REQUESTLADDERDATA Published
Post by: DarkMinion on August 24, 2005, 01:59 PM
I have found an error in the server's return of MCP_RESQUESTLADDERDATA...

It is published:

Quote(DWORD)       Character experience
            (DWORD)       Unknown (0)
            (BYTE)       Character Flags
            (BYTE)       Character title
            (WORD)       Character level
            (BYTE[16])          Character name

The first two DWORDS are actually one 64-bit integer...

It should read:

Quote
(LARGE_INTEGER)       Character experience
(BYTE)       Character Flags
(BYTE)       Character Title
(WORD)       Character Level
(BYTE[16])       Character Name
Title: Re: MCP_REQUESTLADDERDATA Published
Post by: UserLoser. on August 24, 2005, 02:36 PM
Alright, thanks.  Fixed.