• Welcome to Valhalla Legends Archive.
 

Diablo II 1.10 Statstring?

Started by BaDDBLooD, March 13, 2004, 06:08 PM

Previous topic - Next topic

BaDDBLooD

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
There are only two kinds of people who are really fascinating: people who know absolutely everything, and people who know absolutely nothing.

MyndFyre

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.
QuoteEvery generation of humans believed it had all the answers it needed, except for a few mysteries they assumed would be solved at any moment. And they all believed their ancestors were simplistic and deluded. What are the odds that you are the first generation of humans who will understand reality?

After 3 years, it's on the horizon.  The new JinxBot, and BN#, the managed Battle.net Client library.

Quote from: chyea on January 16, 2009, 05:05 PM
You've just located global warming.

ChR0NiC

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

BaDDBLooD

it does not have the "Ladder Or Non Ladder" Parsing!
There are only two kinds of people who are really fascinating: people who know absolutely everything, and people who know absolutely nothing.

Kp

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?
[19:20:23] (BotNet) <[vL]Kp> Any idiot can make a bot with CSB, and many do!

ChR0NiC

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 !!!!

BaDDBLooD

well i did my own war3 parsing, but am not sure how to Approach diablo2 ;[
There are only two kinds of people who are really fascinating: people who know absolutely everything, and people who know absolutely nothing.

UserLoser.

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

MyndFyre

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"...
QuoteEvery generation of humans believed it had all the answers it needed, except for a few mysteries they assumed would be solved at any moment. And they all believed their ancestors were simplistic and deluded. What are the odds that you are the first generation of humans who will understand reality?

After 3 years, it's on the horizon.  The new JinxBot, and BN#, the managed Battle.net Client library.

Quote from: chyea on January 16, 2009, 05:05 PM
You've just located global warming.

Eric

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.

BaDDBLooD

yes but, i just had to split the war3 statstring, diablo2 one isn't done so easily!
There are only two kinds of people who are really fascinating: people who know absolutely everything, and people who know absolutely nothing.

UserLoser.

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.

iago

Mine didn't support Ladder, but, like they said, it wouldn't be that hard.
This'll make an interesting test for broken AV:
QuoteX5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*


Eric

#13
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.