Search found 15547 matches

by PyTom
Mon Apr 22, 2024 12:29 pm
Forum: Ren'Py Questions and Announcements
Topic: renpy 8.2 © icon is shown as non-copyright icon
Replies: 2
Views: 105

Re: renpy 8.2 © icon is shown as non-copyright icon

What does the font have? Ren'Py 8.2 is much better about rendering what the font tells it to.
by PyTom
Sat Apr 20, 2024 10:02 pm
Forum: Ren'Py Questions and Announcements
Topic: Unable to select project directory
Replies: 6
Views: 222

Re: Unable to select project directory

Open a command line, and run:

sudo apt install zenity
by PyTom
Sat Apr 20, 2024 12:32 am
Forum: Ren'Py Questions and Announcements
Topic: No module named 'renpy.display.scenelists'
Replies: 3
Views: 151

Re: No module named 'renpy.display.scenelists'

It looks like you're loading a save made in a newer version of Ren'Py into an older version of Ren'Py. That's not supported.
by PyTom
Mon Apr 01, 2024 2:08 am
Forum: Development of Ren'Py
Topic: Change to syntax to compile?
Replies: 4
Views: 370

Re: Change to syntax to compile?

You probably need:

Code: Select all

init python:
    from typing import Optional
by PyTom
Mon Apr 01, 2024 2:04 am
Forum: Creator Discussion
Topic: The new renai.us/games.renpy.org support thread.
Replies: 257
Views: 419154

Re: The new renai.us/games.renpy.org support thread.

Honestly, the whole site needs to be decommissioned, as it hasn't been maintained for years.
by PyTom
Mon Apr 01, 2024 1:00 am
Forum: Ren'Py Questions and Announcements
Topic: Kinmoku Shark Support
Replies: 1
Views: 357

Kinmoku Shark Support

(As everyone might have guessed, this was the 2024 April Fools Joke.) I'm ready to announce a second project that I've been working on lately, this one during NaNoRenO. I've managed to successfully get Ren'Py running on the Kinmoku Shark video game console. It's now at the level where Ren'Py runs on...
by PyTom
Fri Mar 15, 2024 11:47 pm
Forum: Ren'Py Questions and Announcements
Topic: Ren'Py Downloader
Replies: 2
Views: 127

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

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

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

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

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

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

Re: Does renpy rollback support vars() ?

No. Using:

Code: Select all

setattr(self, field, getattr(self, field) + num)
should work.