Search found 3788 matches

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

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

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

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

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

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

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

[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: 12319

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

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

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

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

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...
by Imperf3kt
Sun Jan 07, 2024 2:31 pm
Forum: Ren'Py Questions and Announcements
Topic: Problem with image output in games
Replies: 2
Views: 64857

Re: Problem with image output in games

This looks very much like a graphics driver issue.
Try holding shift as the game loads and change which renderer you use to see if that helps.
by Imperf3kt
Mon Dec 18, 2023 3:52 am
Forum: Creator Discussion
Topic: Best way to add patreon-only content to your game
Replies: 5
Views: 11539

Re: Best way to add patreon-only content to your game

I've never dealt with Patreon as a game dev, but I think most devs who do use it rely on trust. They trust that their patrons won't leak exclusive content. And if a leak does happen, their reaction is usually reactive, not proactive. I assume this "solution" won't satisfy your needs, so l...