I'm able to get the normal events out of the replays, but when I print it using the following:
replay = sc2reader.load_replay(
'path_here',
engine=sc2reader.engine.GameEngine(plugins=[ContextLoader(), APMTracker(), SelectionTracker()]))
for r in replay.events:
print(r)
I see the "Stats Update" every 10 seconds like expected, but I can't find a way to actually print out those stats? I'm interested in seeing the player's minerals, vespene gas, etc.
Hope someone can point me in the right direction, thanks!