dilpil

Results 5 comments of dilpil

Hmm so with the legacy branch I get an error on calling Steam.initialize(): On Mon, Apr 20, 2020 at 12:37 PM GP Garcia wrote: > Hey there. Hmm, I wonder...

Ah dammit I hit the wrong set of keys ignore this until I finish this very long email On Thu, Apr 23, 2020 at 8:28 AM Dylan White wrote: >...

With the legacy branch I get: OSError Traceback (most recent call last) in ----> 1 steamworks.Steam.Init() C:\PythonRL\steamworks.py in Init() 93 print("ERROR: Steam is not running") 94 # Boot up the...

Ooooo ok heres whats going on. I turned on the ipc logging in the steam call and saw that the output was this: 00004226 python.exe:327684 > IClientUserStats::SetStat( 0, "w", 1,...

I figured out what was going on- Python 3 auto encodes strings as unicode. Ctypes deals in ascii. The following works fine: ` from steamworks import STEAMWORKS() sw = STEAMWORKS()...