Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

jaxenfyrsu

3
Posts
1
Topics
1
Followers
7
Following
A member registered Sep 13, 2019 · View creator page →

Creator of

Recent community posts

(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!

Okay. Thanks for letting me know.

I'm not able to purchase the Pixel Game Maker MV  and wondered if I would be able to make my game using the Demo of it for the challenge. Is the Demo similar to a 30-Day free trial? Would it still be considered viable?