Valhalla Legends Archive

Programming => Battle.net Bot Development => Topic started by: Ozzapoo on March 08, 2009, 07:20 AM

Title: Parsing Statstrings
Post by: Ozzapoo on March 08, 2009, 07:20 AM
Hi. How can I parse the Warcraft III Statstrings received in SID_GETADVLISTEX (0x09)? I only found the following link, which says Warcraft II, and doesn't really explain how to use the data. Could someone please explain? I use VB.Net/C#.

http://bnetdocs.com/?op=doc&did=13
Title: Re: Parsing Statstrings
Post by: fataly on March 08, 2009, 10:48 AM
This is just way giving help:

select case id5

case 0x02: call Melee()
case 0x03: call FFA()
case 0x04: call1v1()
case 0x05: call CTF()
case 0x06: call Greed()
case 0x07: call Slaughter()
case 0x08: call Sudden Death()
case 0x09: call Ladder()
case 0x0A: call UMS()
case 0x0B: callTeam Melee()
case 0x0C: call Team FFA()
case 0x0D: call Team CTF()
case 0x0F: call TvB()
end select

*Vb6


I hope it helps :)
Title: Re: Parsing Statstrings
Post by: Yegg on March 08, 2009, 11:46 AM
fataly: That's the same info that is on the link he posted. He's looking for a detailed description on how to actually parse a data packet received from Battle.net and use the parsed data properly. Either a description, or code with a simple description.
Title: Re: Parsing Statstrings
Post by: brew on March 08, 2009, 01:11 PM
Quote from: fataly on March 08, 2009, 10:48 AM
I hope it helps :)
Unfortunately, I don't think it helped him. One bit. If you intend on giving help, know what the hell you're talking about. Please...
Title: Re: Parsing Statstrings
Post by: Barabajagal on March 08, 2009, 02:08 PM
For Warcraft 3, the map data is encoded...

What exactly do you mean by "use"?
Title: Re: Parsing Statstrings
Post by: fataly on March 08, 2009, 02:09 PM
Hmm did i miss something? if not then i didnt understunt what he need it.. :D
Title: Re: Parsing Statstrings
Post by: Yegg on March 08, 2009, 02:49 PM
Quote from: fataly on March 08, 2009, 02:09 PM
Hmm did i miss something? if not then i didnt understunt what he need it.. :D

Lol. I've never seen someone type the word "understunt" and use it in that manner. I need to go use it somewhere now.

P.S. Sort of a trollish post here, but whatever, the forum gets like 10 posts per day now anyway.
Title: Re: Parsing Statstrings
Post by: PunK on March 24, 2009, 11:15 AM
Quote from: Yegg on March 08, 2009, 02:49 PM
but whatever, the forum gets like 10 posts per day now anyway.

If that.

And I believe he isn't talking about decoding the packet either.

http://pastebin.com/mb8223ba

Should help you.