Skip to main content

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

lowpowgaming

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

Creator of

Recent community posts

Okay, thanks for the reply!

I hope that I can be an asset to you team if you're open to adding another teammate. 
I offer programming in python, and story writing.
I've also used pygame w/ pygbag. It seems usable to me.

I hope that I can be an asset to you team if you're open to adding another teammate. 
I offer programming in python, and story writing.

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!

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