Search found 15544 matches

by PyTom
Fri Feb 09, 2024 8:54 pm
Forum: Ren'Py Questions and Announcements
Topic: [RESOLVED] Save Files with no Stack?
Replies: 3
Views: 569

Re: Save Files with no Stack?

Can you send me the game and a save file? This could be a bug, or it could be something else. I'd like to debug this in-engine and see what's going on.
by PyTom
Mon Feb 05, 2024 11:21 am
Forum: Ren'Py Questions and Announcements
Topic: Problem: Buttons wont click in 8.2.0
Replies: 5
Views: 665

Re: Problem: Buttons wont click in 8.2.0

If you figure out what caused the problem, let me know. It's hard to think of anything that could cause this, but it's clearly happening, so I'd like to fix it.
by PyTom
Wed Jan 31, 2024 10:50 pm
Forum: Ren'Py Questions and Announcements
Topic: Random Number Won't Reroll
Replies: 2
Views: 415

Re: Random Number Won't Reroll

d6 == 5 or 6

Isn't correct. It is _valid_ Python, which is why the game runs. But parenthesized, it reads:

(d6 == 5) or 6

Since 6 is non-zero, it's true, and this will always be true.

Yo probably want to write:

(d6 == 5) or (d6 == 6)

and similar for the 2 or 3 construct.
by PyTom
Wed Jan 31, 2024 10:47 pm
Forum: Ren'Py Questions and Announcements
Topic: Problem: Buttons wont click in 8.2.0
Replies: 5
Views: 665

Re: Problem: Buttons wont click in 8.2.0

Can you put together a demo of the problem? Buttons work in most places.
by PyTom
Wed Jan 31, 2024 1:22 am
Forum: Ren'Py Questions and Announcements
Topic: Ren'Py @ 20
Replies: 4
Views: 605

Ren'Py @ 20

Ren'Py is 20 years old!

Some forum threads about the first versions of Ren'Py:
by PyTom
Wed Jan 31, 2024 1:16 am
Forum: Ren'Py Questions and Announcements
Topic: Problem with the caption in the choices
Replies: 2
Views: 487

Re: Problem with config.narrator.menu

You aren't allowed to change config variables while the game is running.
by PyTom
Wed Jan 31, 2024 1:11 am
Forum: Ren'Py Questions and Announcements
Topic: Trouble with audio that has if_changed attribute
Replies: 2
Views: 748

Re: Trouble with audio that has if_changed attribute

Try 8.2 I think this is fixed there.
by PyTom
Wed Jan 31, 2024 1:09 am
Forum: Ren'Py Questions and Announcements
Topic: Error when trying to instal Android SDK
Replies: 1
Views: 810

Re: Error when trying to instal Android SDK

You want to make sure you have a jdk installed.
by PyTom
Wed Jan 31, 2024 1:08 am
Forum: Ren'Py Questions and Announcements
Topic: [solved]How to clean rapt folder?this folder is about 8GB
Replies: 2
Views: 459

Re: How to clean rapt folder?this folder is about 8GB

You should be able to delete all of project/ , and Ren'Py will re-create it as needed.
by PyTom
Wed Jan 31, 2024 1:07 am
Forum: Ren'Py Questions and Announcements
Topic: Live 2D model that defined differently share the same update_function
Replies: 2
Views: 463

Re: Live 2D model that defined differently share the same update_function

Not, but there isn't a great fix for this. Live2D objects that share the same path share everything. You'll need two copies to do this.
by PyTom
Sat Jan 27, 2024 10:45 pm
Forum: Ren'Py Questions and Announcements
Topic: Ren'Py 8.2 and Ren'Py 7.7 Releases
Replies: 3
Views: 3331

Ren'Py 8.2 and Ren'Py 7.7 Releases

I'm happy to announce Ren'Py 8.2.0 and Ren'Py 7.7.0, the latest releases of Ren'Py, the results of months of work by many contributors. Ren'Py 8.2 is a major release of Ren'Py, containing new features, fixes, and improvements. It is recommended for all new games, and it's strongly recommended that e...
by PyTom
Sat Jan 27, 2024 10:16 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Can't install libraries on 8.2
Replies: 2
Views: 467

Re: Can't install libraries on 8.2

There was an issue with the build process. I've put together a temporary fix, so you should be able to download on 8.2 now (and 7.7 soon).
by PyTom
Fri Jan 26, 2024 7:37 pm
Forum: Ren'Py Questions and Announcements
Topic: Can hackers use Renpy code as malware?
Replies: 2
Views: 612

Re: Can hackers use Renpy code as malware?

This is true, and is true of all games, and all software you download. (And another good reason to get games from official sources and not shady sites.)
by PyTom
Thu Jan 25, 2024 6:35 pm
Forum: General Discussion
Topic: Happy LSF Anniversary!
Replies: 2
Views: 508

Re: Happy LSF Anniversary!

I already released that for the 5 year anniversary of Ren'Py.

viewtopic.php?f=8&t=4638

I wasn't able to get it to run on Windows 10, but did get it to run on Linux and Wine.