You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey all, I just found this API today because I was requested to implement steam achievements for a game.
I automatized the achievement example sample code a bit, and had to debug for a long session, trying to figure out why setting stats and achievements (SetStat() and SetAchievement()) didn't go through.
I've looked up many websites and scrolled the official steamworks documentation quite a lot, until I found this post: https://lightrun.com/answers/philippj-steamworkspy-setstat-always-fails
This person also fought the same issue, and figured out the strings passed into the API's parameters need to be explicitly told to be encoded to ascii. After I put ".encode('ascii')" after every string parameter for getter/setter API functions, things started to work for me!
I'd advise adding the same encoding functions to string parameters before they're passed to the actual function, as such:
def SetAchievement(self, name: str) -> bool:
"""Set a given achievement
:param name: str
:return: bool
"""
return self.steam.SetAchievement(name.encoding('ascii'))
The text was updated successfully, but these errors were encountered:
Hey all, I just found this API today because I was requested to implement steam achievements for a game.
I automatized the achievement example sample code a bit, and had to debug for a long session, trying to figure out why setting stats and achievements (SetStat() and SetAchievement()) didn't go through.
I've looked up many websites and scrolled the official steamworks documentation quite a lot, until I found this post: https://lightrun.com/answers/philippj-steamworkspy-setstat-always-fails
This person also fought the same issue, and figured out the strings passed into the API's parameters need to be explicitly told to be encoded to ascii. After I put ".encode('ascii')" after every string parameter for getter/setter API functions, things started to work for me!
I'd advise adding the same encoding functions to string parameters before they're passed to the actual function, as such:
The text was updated successfully, but these errors were encountered: