Anthony Martin
Anthony Martin
Looks like the replay length is 28:59 (so yes GGGreplays time is off) How I get the game length for sc2replaystats is the following: LOTV floor(m_elapsedGameLoops / 11.2 ) HOTS/WOL...
I don't recall where I got the 22.29 from, I believe it was from trial and error :) I copied it quickly out of my code, you wont need the...
Good catch! I will update my code :)
I don't believe the info is in the replay file, how I go about it is I keep track of the build times for the units so the finished time...
You would have to account for it, by finding what building the chrono was used on, and also linking the unit to the building. "Might be able to link the...
For what it is worth how I determine if a replay is coop or not is to actually look for a coop commander m_syncLobbyState->m_lobbyState->m_slots[0]->m_commander.
the m_userid can be found from the m_syncLobbyState->m_lobbyState->m_slots section from the init data https://github.com/Blizzard/s2protocol/blob/master/docs/flags/initdata.md
We need blizzard to run their automated script that will add the missing protocol file, than it will work! But with this being a PTR replay not sure when it...
I'm sorry I shouldn't respond in the morning when i'm tired i guess. protocol80188.py is missing and is the current patch, I copied it from protocol79998.py which seems to be...
Would it be helpful If I wrote up some examples on how I use it in php ? I export the data from s2protocol as json and than do all...