Search found 3775 matches

by Imperf3kt
Wed Feb 28, 2024 7:06 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] File not found update.pem
Replies: 12
Views: 1168

Re: File not found update.pem

I also ran into this. I think it probably only happens when you have "Build Updates" checked. I can't find any code in renpy to generate it, but something did in one of my projects, so I just copied it into my other project so it could be used there as well. I'm just testing stuff at this...
by Imperf3kt
Wed Feb 28, 2024 6:56 am
Forum: Creator Discussion
Topic: I lost code for a minigame and can't find it ANYWHERE!
Replies: 5
Views: 756

Re: I lost code for a minigame and can't find it ANYWHERE!

Might it be any of the games listed in this thread?
viewtopic.php?t=47820
by Imperf3kt
Wed Feb 28, 2024 4:41 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] File not found update.pem
Replies: 12
Views: 1168

Re: File not found update.pem

Thanks for the tips. I was going into android.rpy looking for any references I could, but I never thought to check distribute_gui All I can say is that PEM is a container file format often used to store cryptographic keys. Like those used for SSL certificates (for "https" web connections)....
by Imperf3kt
Tue Feb 27, 2024 5:31 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] File not found update.pem
Replies: 12
Views: 1168

Re: File not found update.pem

I have checked other, older projects, and they build an android distribution just fine, so I am completely confused what is happening with this project. The project in question is considerably larger and more complex than the others I built, but I haven't changed anything significant since last rele...
by Imperf3kt
Fri Feb 16, 2024 12:19 am
Forum: Ren'Py Questions and Announcements
Topic: vpunch annoying white borders
Replies: 3
Views: 287

Re: vpunch annoying white borders

The documentation suggests ATL might be a viable option for imitating vpunch and changing it to your liking
Are you familiar with ATL at all?
by Imperf3kt
Fri Feb 16, 2024 12:16 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] File not found update.pem
Replies: 12
Views: 1168

Re: File not found update.pem

Today I got around to installing the correct JDK. I clicked "Install SDK" and it says "It looks like you're ready to start packaging games." so I started trying to build a universal APK which appeared to work fine, at first, but it still fails with the same error. I'm sorry, but ...
by Imperf3kt
Tue Feb 13, 2024 10:41 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] File not found update.pem
Replies: 12
Views: 1168

Re: File not found update.pem

I believe I am using Java 8 still and Ren'Py is telling me I should have JDK21. That might be my issue I mean, Java 8 is from 2014. Man... :lol: How about trying that first? I made the thread before considering that may be the issue. I'll update when I get a chance to try. For what it's worth, ren'...
by Imperf3kt
Tue Feb 13, 2024 10:38 pm
Forum: Ren'Py Cookbook
Topic: A Tooltip whose x/y position follows the mouse's.
Replies: 13
Views: 8697

Re: A Tooltip whose x/y position follows the mouse's.

Ordinarily, you simply need to unfocus / unhover the button that is supplying the tooltip

Hiding the screen should be more than enough
by Imperf3kt
Mon Feb 12, 2024 9:15 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] File not found update.pem
Replies: 12
Views: 1168

[Solved] File not found update.pem

I recently updated Ren'Py to 8.2.0.25012702 and tried to build an Android version of my project (universal apk) but upon building the package, I am met with the following error I'm sorry, but an uncaught exception occurred. While running game code: File "game/android.rpy", line 539, in <mo...
by Imperf3kt
Mon Feb 05, 2024 6:54 pm
Forum: Ren'Py Questions and Announcements
Topic: Line Breaks
Replies: 9
Views: 11926

Re: Line Breaks

Instead of whatever you came up with that you didn't like, have you considered just closing the text tag?

Code: Select all

"words [custom tag]words[/custom tag]\n[custom tag]words[/custom tag]" 
by Imperf3kt
Thu Jan 25, 2024 5:07 pm
Forum: Ren'Py Questions and Announcements
Topic: how to word wrap?
Replies: 7
Views: 722

Re: how to word wrap?

Oops, that's my mistake. I always confuse whether I'm supposed to capitalize that or not
by Imperf3kt
Wed Jan 24, 2024 7:35 pm
Forum: Ren'Py Questions and Announcements
Topic: how to word wrap?
Replies: 7
Views: 722

Re: how to word wrap?

You could add a hard linebreak with \n j "Greetings!\n( press the space-bar to continue )" I believe triple quoted strings also work (but I haven't tested this) These will format the text however you enter it. j _("""Greetings! ( press the space-bar to continue )""...
by Imperf3kt
Tue Jan 16, 2024 5:06 pm
Forum: Ren'Py Questions and Announcements
Topic: Custom Shaky text tag?
Replies: 2
Views: 9833

Re: Custom Shaky text tag?

Also, while you will likely want to learn how to do these things for yourself, sometimes reinventing the already invented isn't necessary

viewtopic.php?t=60527
by Imperf3kt
Sun Jan 07, 2024 11:01 pm
Forum: Ren'Py Questions and Announcements
Topic: how much stuff do i have to put in dollar signs?
Replies: 2
Views: 42423

Re: how much stuff do i have to put in dollar signs?

The $ symbol is the equivalent of a one line python block. Use it anywhere you need to use python In your case, you'll need an actual python block label display_story: python: for element in story_elements: show_text_with_image(element["image"], element["texts"]) return Though, t...