Search found 3772 matches

by Imperf3kt
Sun Apr 14, 2024 1:49 am
Forum: Development of Ren'Py
Topic: [special char interpolation]What am I missing?
Replies: 2
Views: 200

Re: [special char interpolation]What am I missing?

If I understand you correctly... try it this way label start: "some test." jump somelabel label test (mess): "[mess]." return label somelabel: $renpy.call ("test", str("% problem")) "test successful." return You could also achieve it this way default...
by Imperf3kt
Sat Apr 13, 2024 6:31 am
Forum: Ren'Py Questions and Announcements
Topic: Empty textbox shows up while using renpy.pause()
Replies: 5
Views: 297

Re: Empty textbox shows up while using renpy.pause()

I wasn't aware Ren'Py said that when you tried to install Atom. I have never had an issue with it myself. YMMV I guess.

I don't know what to say about the window issue, I tested it my end before suggesting it, it works as intended for me.
Perhaps there is some other reason the window is not hiding.
by Imperf3kt
Sat Apr 13, 2024 2:26 am
Forum: Ren'Py Questions and Announcements
Topic: Empty textbox shows up while using renpy.pause()
Replies: 5
Views: 297

Re: Empty textbox shows up while using renpy.pause()

Atom doesn't corrupt anything, the reason it is no longer suggested is because it's outdated. I'd suggest switching to Visual Studio Code, as Atom is very obsolete. The extension I use for VS Code is called "Code Spell Checker" https://marketplace.visualstudio.com/items?itemName=streetsid...
by Imperf3kt
Thu Apr 11, 2024 11:57 pm
Forum: Ren'Py Questions and Announcements
Topic: Renpy changes video color.
Replies: 1
Views: 142

Re: Renpy changes video color.

What resolution are the videos.
This looks a bit like the difference between rec 601 and rec 709
by Imperf3kt
Thu Apr 11, 2024 2:21 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved!] Name Generator generating twice?
Replies: 5
Views: 240

Re: Name Generator generating twice?

Looking at your original code, you have if randommc, a variable which starts as false in your code. This is what seems to be used to check whether to generate a name or not in your class.

Then in your script, you check if this variable is populated, and run the same code again
by Imperf3kt
Mon Apr 01, 2024 1:19 am
Forum: Ren'Py Questions and Announcements
Topic: Kinmoku Shark Support
Replies: 1
Views: 347

Re: Kinmoku Shark Support

Nice, love the effect when I scroll
by Imperf3kt
Thu Mar 28, 2024 2:26 am
Forum: Ren'Py Questions and Announcements
Topic: [solved] Using videos as button?
Replies: 5
Views: 222

Re: [solved] Using videos as button?

I personally would have just created a frame displaying the video, then placed an invisible button over top of that. With a little tweaking, this is also an option.
by Imperf3kt
Sun Mar 17, 2024 7:27 pm
Forum: General Discussion
Topic: How to disable saving temporarily?
Replies: 2
Views: 1270

Re: How to disable saving temporarily?

During the part you want to disable saving, set the variable "_game_menu" to None and disable keybinds for the escape key, and probably disable the quick menu also with $quick_menu = False Then once the player is past the point you want to disable saving, re-enable them. The default _game_...
by Imperf3kt
Sun Mar 17, 2024 7:22 pm
Forum: Ren'Py Questions and Announcements
Topic: Ren'Py update 8.2.1 broke scrolling on a viewport
Replies: 3
Views: 172

Re: Ren'Py update 8.2.1 broke scrolling on a viewport

viewports work great for me on 8.2

What happens if you delete this part

Code: Select all

if ymax is not None:
            ymaximum ymax
by Imperf3kt
Thu Mar 14, 2024 8:48 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Using icons in quick menu instead of text and changing border at the same time...
Replies: 2
Views: 123

Re: Using icons in quick menu instead of text and changing border at the same time...

Borders are a different property than what you want, you're looking for some spacing between the textbuttons if quick_menu: vbox: style_prefix "quick" $ tooltip = GetTooltip() if tooltip: text "[tooltip]" xalign 0.01 yalign 1.0 spacing 25 #adjust this number to increase or decrea...
by Imperf3kt
Sat Mar 02, 2024 10:49 am
Forum: Development of Ren'Py
Topic: Android Build error [Solved]
Replies: 4
Views: 406

Re: Android Build error

I believe the link the launcher gives you is all you should need. Maybe make sure you're up to date
by Imperf3kt
Sat Mar 02, 2024 10:45 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] File not found update.pem
Replies: 12
Views: 1130

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 7:06 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved] File not found update.pem
Replies: 12
Views: 1130

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

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

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)....