Valhalla Legends Archive

Programming => Battle.net Bot Development => Topic started by: FrostWraith on March 22, 2008, 07:02 PM

Title: Diablo Clone
Post by: FrostWraith on March 22, 2008, 07:02 PM
I tried searching but could only find bits and pieces.  Does anyone know what packet is received that notifies the client that Diablo Clone is present.  If I researched correctly, it would be in 0x89 and would be event 0x5A?

Any help appreciated!
Title: Re: Diablo Clone
Post by: Ringo on March 22, 2008, 07:38 PM
The event is in packet 0x5A (http://forum.valhallalegends.com/index.php?topic=17244.msg176421#msg176421)

And 0x5A format:

(BYTE) Event ID
(BYTE) Action Type
(DWORD) Player ID
(BYTE) Entity Type
(VOID[16]) Char Name
(VOID[16]) Account Name

The player ID will be the soj count, if its a sale/walk event, other wise the other values can be ignored for those dc events.

hope this helps
Title: Re: Diablo Clone
Post by: FrostWraith on March 22, 2008, 08:55 PM
Aha, it does, thanks.