Jan-Eric Nitschke
Jan-Eric Nitschke
From what i understand the problem here is just for flash bangs in case a player already has one. Would it be possible to implement it for everything else? Either...
This is still an open issue in Markus' parser. Maybe i can revive that discussion and ideally submit a PR if i manage. https://github.com/markus-wa/demoinfocs-golang/issues/146
I just tested the current release (1.3.1) with the parsed json files [here](https://drive.google.com/file/d/1h5q0PJ0hs0A-_eGfHM1_JEm1MtiLvQuE) and [here]([match730_003555112031260508424_1358874782_145.json.txt](https://github.com/pnxenopoulos/awpy/files/8933338/match730_003555112031260508424_1358874782_145.json.txt) and did not get any errors. So i will assume this is fixed and close...
This can probably be closed now, right? https://github.com/pnxenopoulos/esta https://arxiv.org/abs/2209.09861
@thwmp the superlatives are pretty easily done by taking the player stats as a dataframe and just sorting them by the column you are interested in. For a team_stats function...
Might make sense to allow for custom color, marker and annotation functions in general in the `plot_round` function. They should just default to what is currently there. ``` try: #...
Would be solved by changing `player_statistics[str(p["steamID"]) + " - " + p["playerName"]]` in https://github.com/pnxenopoulos/awpy/blob/main/awpy/analytics/stats.py#L17 (and everywhere else there) to: `player_statistics[p["playerName"] if p["steamID"] == 0 else str(p["steamID"])]`
I think this has also been fixed with https://github.com/pnxenopoulos/awpy/commit/142583e72d2de9990a3271663e6bfe0d69784164#diff-15223ce2f42f136e546dbb1ad2682fe952b674b1b479c2e11b8f2a46447cc87aR35
I don't know if this is something we need to to address at all. This error is raised directly from the go parser and we panic on it at the...
If i just push the compiled library from my windows machine the windows workflows work. Makes sense. But i dont know how to solve this when we want to push...