Okay, thanks for the reply!
lowpowgaming
7
Posts
2
Topics
1
Followers
7
Following
A member registered Sep 13, 2019 · View creator page →
Creator of
Thoughts about life, getting out of a rut and finding purpose.
Interactive Fiction
Play in browser
Recent community posts
Gamedev.js Jam 2026 ($30k in prizes!) community · Posted in Looking for someone to learn js + kaplay with.
Gamedev.js Jam 2026 ($30k in prizes!) community · Replied to Facedonia in Game Writer/Narrative Designer
Gamedev.js Jam 2026 ($30k in prizes!) community · Created a new topic Python Dev/Story Writer Looking for a team
Hi peeps. I'm interested in the jam and curious if anyone would like to join me or add me on their team.
I'm currently brainstorming on either a platformer or a text adventure/visual novel of my own.
But I am happy to offer my skills in writing or assist in programming.
I have used Godot, and Unity before. Also, I'm a fast learner.
Thank you!
Debugger Ren'py with PowerShell for Visual Studio Code comments · Posted in Debugger Ren'py with PowerShell for Visual Studio Code comments
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!Pixel Game Maker MV Game Development Challenge community · Replied to Pixel Game Maker MV in Demo Version
