Search found 9 matches

by r3dhummingbird
Mon Feb 26, 2024 3:19 pm
Forum: Ren'Py Questions and Announcements
Topic: Bytes-like Object?
Replies: 2
Views: 729

Re: Bytes-like Object?

Creator of the project here. The project is https://github.com/RuolinZheng08/renpy-rhythm. Another correct way, as written in the project README, is to add

Code: Select all

define config.open_file_encoding = 'utf-8'
to your options.rpy
by r3dhummingbird
Sun Dec 26, 2021 3:46 pm
Forum: I am an Artist
Topic: (OPEN) LAYERTO Artwork: Anime Sprites & CGs
Replies: 13
Views: 8004

Re: (OPEN) Anime Artist for hire - Sprite, CG, Illust, etc.

Lynn here - I worked with Noa on my project, Learn to Code RPG (https://freecodecamp.itch.io/learn-to-code-rpg). Noa is awesome and super professional - he responds promptly to feedback, is flexible with changes in design, and always delivers on time :D I'd highly recommending working with Noa on yo...
by r3dhummingbird
Mon Jul 19, 2021 7:01 pm
Forum: Ren'Py Cookbook
Topic: Ren'Py Minigames 101: Build a Rhythm Game!
Replies: 1
Views: 3635

Ren'Py Minigames 101: Build a Rhythm Game!

I developed some free course material to help you learn to build any minigame in Ren'Py. Together we will build from scratch a Rhythm Game, adapted from my free, open-source code posted here: https://lemmasoft.renai.us/forums/viewtopic.php?f=51&t=62167&p=542801#p542801 YouTube Ren'Py Minigam...
by r3dhummingbird
Sun Jun 20, 2021 10:50 pm
Forum: Ren'Py Cookbook
Topic: Python for Ren'Py Dev Cookbook
Replies: 0
Views: 2657

Python for Ren'Py Dev Cookbook

I developed some free course material covering all the Python basics you'd need to buzz up your Ren'Py game dev. GitHub: https://github.com/RuolinZheng08/python-for-renpy-dev itch.io: https://r3dhummingbird.itch.io/python-basics-for-renpy-dev demo.png I also developed a paid Udemy course (one hour o...
by r3dhummingbird
Mon May 17, 2021 5:40 pm
Forum: Ren'Py Cookbook
Topic: [Source Code] Rhythm Game in Ren'Py!
Replies: 2
Views: 9263

[Source Code] Rhythm Game in Ren'Py!

I built a rhythm game engine for Ren'Py! You can use any music you like and have the beat map automatically generated for you. Source code on GitHub: https://github.com/RuolinZheng08/renpy-rhythm itch.io: https://r3dhummingbird.itch.io/renpy-rhythm-game YouTube demo: https://youtu.be/7fMig9BmDzY Lea...
by r3dhummingbird
Fri Jan 08, 2021 7:57 pm
Forum: Ren'Py Questions and Announcements
Topic: Ren'Py 7.4.0 Released
Replies: 8
Views: 2747

Re: Ren'Py 7.4.0 Released

Hi there, I've run into a problem where pythonw crashes when I import a third-party Python 2 library. The import works fine for Ren'Py 7.3.5, so I suspect this is related to the Python 2/3 compatibility feature. A more detailed description of my issue is in this forum post: https://lemmasoft.renai.u...
by r3dhummingbird
Fri Jan 08, 2021 7:50 pm
Forum: Ren'Py Questions and Announcements
Topic: Pythonw Crashes When Porting Ren'Py Chess Engine to Ren'Py 7.4
Replies: 1
Views: 511

Pythonw Crashes When Porting Ren'Py Chess Engine to Ren'Py 7.4

I created a chess engine for Ren'Py 7.3.5 https://lemmasoft.renai.us/forums/viewtopic.php?t=60475 and am now trying to port it to Ren'Py 7.4.0. However, I've encountered some problems potentially related to Ren'Py 7.4.0's attempt to bridge Python 2 and 3 https://lemmasoft.renai.us/forums/viewtopic.p...
by r3dhummingbird
Sat Oct 31, 2020 5:58 pm
Forum: Ren'Py Cookbook
Topic: Ren'Py Chess Engine Source Code
Replies: 3
Views: 1682

Re: Ren'Py Chess Engine Source Code

Is this built on top of https://lemmasoft.renai.us/forums/viewtopic.php?f=51&t=50997 ? You may want to check the checkmate conditions, I once got an error instead of losing but didn't take note of how. Thanks for the comment! That was actually my account from two years ago :D This time I didn't...
by r3dhummingbird
Sat Oct 31, 2020 1:20 pm
Forum: Ren'Py Cookbook
Topic: Ren'Py Chess Engine Source Code
Replies: 3
Views: 1682

Ren'Py Chess Engine Source Code

Itch.io link: https://r3dhummingbird.itch.io/renpy-chess-game I built a chess GUI built using python-chess https://github.com/niklasf/python-chess and Stockfish (for chess AI). You can use it as a standalone playable or integrate it as a minigame into a Ren'Py visual novel project. The source code i...