Valhalla Legends Archive

Programming => Battle.net Bot Development => Topic started by: BaDDBLooD on March 13, 2004, 06:08 PM

Title: Diablo II 1.10 Statstring?
Post by: BaDDBLooD on March 13, 2004, 06:08 PM
Anyone have a Diablo II statstring that includes

Ladder + HardCore, Plain Ladder

i can have

or Tell me where this is Included in the Statstring
Title: Re:Diablo II 1.10 Statstring?
Post by: MyndFyre on March 13, 2004, 06:38 PM
By any chance, have you used the "Search" feature of the message boards?  You might try searching for "Diablo II Statstring".

I believe iago posted a Diablo II Statstring parser in C++ a few months ago.  I know it was right around the time that 1.10 was released, but I do not remember if it supported 1.10.
Title: Re:Diablo II 1.10 Statstring?
Post by: ChR0NiC on March 13, 2004, 06:38 PM
Quote from: Myndfyre on March 13, 2004, 06:38 PM
By any chance, have you used the "Search" feature of the message boards?  You might try searching for "Diablo II Statstring".

I believe iago posted a Diablo II Statstring parser in C++ a few months ago.  I know it was right around the time that 1.10 was released, but I do not remember if it supported 1.10.

GG

And yes it's on the forums, just look
Title: Re:Diablo II 1.10 Statstring?
Post by: BaDDBLooD on March 13, 2004, 06:43 PM
it does not have the "Ladder Or Non Ladder" Parsing!
Title: Re:Diablo II 1.10 Statstring?
Post by: Kp on March 13, 2004, 07:03 PM
Quote from: BaDDBLooD on March 13, 2004, 06:43 PMit does not have the "Ladder Or Non Ladder" Parsing!

So do that yourself?  Had you ever considered writing some original code for your bot, instead of just splicing in prewritten fragments?
Title: Re:Diablo II 1.10 Statstring?
Post by: ChR0NiC on March 13, 2004, 07:11 PM
Quote from: BaDDBLooD on March 13, 2004, 06:43 PMit does not have the "Ladder Or Non Ladder" Parsing!

Quote from: Kp on March 13, 2004, 07:03 PM
So do that yourself?  Had you ever considered writing some original code for your bot, instead of just splicing in prewritten fragments?

SLAM DUNK !!!!
Title: Re:Diablo II 1.10 Statstring?
Post by: BaDDBLooD on March 13, 2004, 08:03 PM
well i did my own war3 parsing, but am not sure how to Approach diablo2 ;[
Title: Re:Diablo II 1.10 Statstring?
Post by: UserLoser. on March 13, 2004, 08:27 PM
Quote from: BaDDBLooD on March 13, 2004, 08:03 PM
well i did my own war3 parsing, but am not sure how to Approach diablo2 ;[

Get a buddy/second computer.  Use a packet logger, have second computer/buddy rejoin channel on different characters, different gear, different levels, ect., see what changes
Title: Re:Diablo II 1.10 Statstring?
Post by: MyndFyre on March 13, 2004, 08:30 PM
Quote from: BaDDBLooD on March 13, 2004, 08:03 PM
well i did my own war3 parsing, but am not sure how to Approach diablo2 ;[

No offense, but having done WC3 parsing myself....  It isn't something that you really have to "approach"...
Title: Re:Diablo II 1.10 Statstring?
Post by: Eric on March 13, 2004, 08:52 PM
Parsing out the Diablo II stats would be done pretty much the same way you parsed Warcraft III stats. If you can do one, you should be able to do the other as well.
Title: Re:Diablo II 1.10 Statstring?
Post by: BaDDBLooD on March 13, 2004, 09:14 PM
yes but, i just had to split the war3 statstring, diablo2 one isn't done so easily!
Title: Re:Diablo II 1.10 Statstring?
Post by: UserLoser. on March 13, 2004, 09:37 PM
Quote from: LoRd[nK] on March 13, 2004, 08:52 PM
Parsing out the Diablo II stats would be done pretty much the same way you parsed Warcraft III stats. If you can do one, you should be able to do the other as well.

I'd have to disagree.  They're no where near in the same format, and you cannot parse it like you parse the other.  Diablo II statstrings are very complicated, and would take a while to figure out your self without another's help.
Title: Re:Diablo II 1.10 Statstring?
Post by: iago on March 13, 2004, 09:51 PM
Mine didn't support Ladder, but, like they said, it wouldn't be that hard.
Title: Re:Diablo II 1.10 Statstring?
Post by: Eric on March 14, 2004, 02:22 AM
Quote from: UserLoser. on March 13, 2004, 09:37 PM
Quote from: LoRd[nK] on March 13, 2004, 08:52 PM
Parsing out the Diablo II stats would be done pretty much the same way you parsed Warcraft III stats. If you can do one, you should be able to do the other as well.

I'd have to disagree.  They're no where near in the same format, and you cannot parse it like you parse the other.  Diablo II statstrings are very complicated, and would take a while to figure out your self without another's help.

Trial and error, the same way most packet formatting is discovered.