Valhalla Legends Archive

Programming => Battle.net Bot Development => Battle.net Bot Development References => Topic started by: PaiD on November 28, 2003, 05:48 PM

Title: Packet 0x75 Information
Post by: PaiD on November 28, 2003, 05:48 PM
Ok I am getting 0x75 and I dont know how to Parse it. Can some1 help me plz?
I know it is a war3 Clan Packet

FF 75 0A 00 00 4D 61 63 53 04


Edit: I have checked bnetdocs but they dont have anything on it that it public to me :'(
Title: Re:[VB] 0x75 Help
Post by: hismajesty on November 28, 2003, 06:06 PM
Quote from: MoNeY on November 28, 2003, 05:48 PM
I know it is a war3 Clan Packet

It's clan info iirc.
Title: Re:[VB] 0x75 Help
Post by: PaiD on November 28, 2003, 06:10 PM
ok how would I take it apart and get my info?
Title: Re:[VB] 0x75 Help
Post by: iago on November 29, 2003, 07:49 AM
Quote from: MoNeY on November 28, 2003, 05:48 PM
Ok I am getting 0x75 and I dont know how to Parse it. Can some1 help me plz?
I know it is a war3 Clan Packet

FF 75 0A 00 00 4D 61 63 53 04


Edit: I have checked bnetdocs but they dont have anything on it that it public to me :'(

Without reading any responses, or ever having seen the packet before, it looks pretty simple:
(byte) 0; // reserved?
(String*4) MacS // clan name?
(byte) 4; // rank?

That's just a guess, but that's obvoiusly 2 bytes and a 4 digit string.
Title: Re:[VB] 0x75 Help
Post by: Soul Taker on November 29, 2003, 10:00 PM
Nah, it's probably a DWORD.
Title: Re:[VB] 0x75 Help
Post by: iago on November 29, 2003, 10:38 PM
It's a dword that's storing a string, since it's still a string of characters.