Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines
(3 edits)

Hi DRincs,

Thanks for this wonderful tool! I'll using it in my projects moving forward.

There was an error when running my ren'py game the first time, probably due to being on Windows (not WSL) and the version of python I'm using which is 3.12.x.


error:
```
I'm sorry, but errors were detected in your script. Please correct the
errors listed below, and try again.
File "game/console/debug.rpy", line 17: invalid syntax
    width = max(map(lambda (k, v): len(k), results or [('', None)]))
                ^
   
Ren'Py Version: Ren'Py 8.0.3.22090809
```

So I had to change the code, and to fix it I removed the braces from "lambda (k, v)":
Before:
width = max(map(lambda (k, v): len(k), results or [('', None)]))
After:
width = max(map(lambda k, v: len(k), results or [('', None)]))
I hope this helps!