Closed Sh3tix closed 3 years ago
Hello, when I try this : winrate_solo = player.get_stats(Mode.SOLO).kills_match
winrate_solo = player.get_stats(Mode.SOLO).kills_match
I have this error : 'Stats' object has no attribute 'kills_match'
Any help ?
There's no such attribute on the stats object, you can check all the attributes with: dir(player.get_stats(Mode.SOLO)
dir(player.get_stats(Mode.SOLO)
Hello, when I try this :
winrate_solo = player.get_stats(Mode.SOLO).kills_match
I have this error : 'Stats' object has no attribute 'kills_match'
Any help ?