Search found 15539 matches

by PyTom
Fri Mar 15, 2024 11:47 pm
Forum: Ren'Py Questions and Announcements
Topic: Ren'Py Downloader
Replies: 2
Views: 85

Re: Ren'Py Downloader

The downloader is meant for mobile - to turn one game into another. The updater is meant for pc/mac/linux - it's meant to update an existing game. The key.pem file is the public key. (IIRC, the file you shouldn't distribute, but should back up, is named private.pem.) It's fine to distribute, and mak...
by PyTom
Sat Mar 09, 2024 5:31 pm
Forum: Ren'Py Questions and Announcements
Topic: Android Game Freezes in "Downloading assets"
Replies: 11
Views: 665

Re: Android Game Freezes in "Downloading assets"

A couple things:

* Make sure you're on 8.2.1 or the fix branch, as there have been a lot of fixes to this.
* There's also a known problem with Google Play. Your best bet is to contact @GooglePlayBiz on X, and see if they can fix it.
by PyTom
Sat Mar 09, 2024 1:13 am
Forum: Ren'Py Questions and Announcements
Topic: Android Game Freezes in "Downloading assets"
Replies: 11
Views: 665

Re: Android Game Freezes in "Downloading assets"

The log comes out over logcat, so you can get access to it that way.
by PyTom
Thu Mar 07, 2024 4:19 pm
Forum: Ren'Py Questions and Announcements
Topic: [Closed] Graphic glitches since updating to 8.1
Replies: 8
Views: 719

Re: Graphic glitches since updating to 8.1

This is simply bad - with very few exceptions, Ren'Py functions can't be called outside of the main thread. (IIRC, renpy.queue_event is the only one, and you can also update data in the store.)
by PyTom
Mon Mar 04, 2024 11:39 pm
Forum: Ren'Py Questions and Announcements
Topic: Ren'Py 8.2 and Ren'Py 7.7 Releases
Replies: 3
Views: 2493

Re: Ren'Py 8.2 and Ren'Py 7.7 Releases

I've released Ren'Py 8.2.1 and Ren'Py 7.7.1. These are fix releases for Ren'Py 8.2 and Ren'Py 7.7, respectively. For a list of what's been fixed and changed, please take a look at the changelog . Downloads of Ren'Py 8.2.1 can be found at: https://www.renpy.org/release/8.2.1 Downloads of Ren'Py 7.7.1...
by PyTom
Thu Feb 29, 2024 12:54 pm
Forum: General Discussion
Topic: Please do not respond to the Spambots
Replies: 84
Views: 91135

Re: Please do not respond to the Spambots

I've cleaned things up, and also deactivated most accounts that have been inactive for 2+ years, so hopefully that will stop future spam.
by PyTom
Sat Feb 10, 2024 11:56 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Does renpy rollback support vars() ?
Replies: 2
Views: 341

Re: Does renpy rollback support vars() ?

No. Using:

Code: Select all

setattr(self, field, getattr(self, field) + num)
should work.
by PyTom
Sat Feb 10, 2024 11:09 pm
Forum: Ren'Py Questions and Announcements
Topic: [RESOLVED] Save Files with no Stack?
Replies: 3
Views: 472

Re: Save Files with no Stack?

So, the issue is something entirely different. In Ren'Py 8.1, a new Save Token Security system was implemented, which means that when someone is loading a save from a different computer, Ren'Py will notify the user and ask if they want to allow it. This is done by two new yesno prompts: gui.UNKNOWN_...
by PyTom
Fri Feb 09, 2024 11:49 pm
Forum: Ren'Py Questions and Announcements
Topic: MacOS Build Requesting Microphone Permission
Replies: 7
Views: 455

Re: MacOS Build Requesting Microphone Permission

At this point, I have no idea. Could be a problem on Apple's end.
by PyTom
Fri Feb 09, 2024 10:19 pm
Forum: Ren'Py Questions and Announcements
Topic: MacOS Build Requesting Microphone Permission
Replies: 7
Views: 455

Re: MacOS Build Requesting Microphone Permission

I don't know of anything that would cause this in stock Ren'Py, and after building an unsigned app, it doesn't seem to cause this.

Are you doing anything to get your game signed and notarized?
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: 472

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: 637

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: 409

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: 637

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: 590

Ren'Py @ 20

Ren'Py is 20 years old!

Some forum threads about the first versions of Ren'Py: