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
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.
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
it does not have the "Ladder Or Non Ladder" Parsing!
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?
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 !!!!
well i did my own war3 parsing, but am not sure how to Approach diablo2 ;[
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
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"...
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.
yes but, i just had to split the war3 statstring, diablo2 one isn't done so easily!
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.
Mine didn't support Ladder, but, like they said, it wouldn't be that hard.
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.