Search found 269 matches

by SuperbowserX
Sat May 23, 2020 7:22 pm
Forum: Ren'Py Questions and Announcements
Topic: Issues with custom history screen including rollback
Replies: 2
Views: 265

Re: Issues with custom history screen including rollback

It was :) Anyway, I managed to work out a solution. In my imagebutton, rather than make an action to call a label, I simply made a sequence of actions that first disabled rollback, then hid the quick menu, then show the history screen. Then, the history screen's return action was also a sequence of ...
by SuperbowserX
Sat May 23, 2020 10:42 am
Forum: Ren'Py Questions and Announcements
Topic: Issues with custom history screen including rollback
Replies: 2
Views: 265

Issues with custom history screen including rollback

I have a custom history screen that is showed by a button that is always on the screen. ... imagebutton auto "ui/%s_dialogue.png" action Call("show_history") label show_history: $ config.rollback_enabled = False $ quick_menu = False window hide with Dissolve(0.125) call screen hi...
by SuperbowserX
Fri May 22, 2020 8:37 am
Forum: Ren'Py Questions and Announcements
Topic: Name input frame
Replies: 4
Views: 331

Re: Name input frame

Maybe you could make a really quick mockup in Microsoft Paint or a drawing software of what you're trying to do?

If you want to reposition the input box, I found this old thread viewtopic.php?t=22448
by SuperbowserX
Fri May 22, 2020 6:13 am
Forum: Ren'Py Questions and Announcements
Topic: Reloading doesn't work with capital R?!
Replies: 3
Views: 300

Re: Reloading doesn't work with capital R?!

Thanks, aha this feels a little silly in retrospect.
by SuperbowserX
Fri May 22, 2020 5:55 am
Forum: Asset Creation: Music, Sound, and Movies
Topic: What kind of song is this (genre, etc.)?
Replies: 4
Views: 7718

What kind of song is this (genre, etc.)?

It's my favorite song from a video game very dear to me and I have no idea what kind of genre it's from. Do you have any ideas as to what genre this song is from or what keywords I might be able to search to find song similar to it?

https://www.youtube.com/watch?v=QDPRJDF59q4
by SuperbowserX
Fri May 22, 2020 5:47 am
Forum: Ren'Py Questions and Announcements
Topic: Reloading doesn't work with capital R?!
Replies: 3
Views: 300

Reloading doesn't work with capital R?!

I've been working on a personal project the past couple of days, and I've been baffled as to why reloading with shift+R doesn't work all the time. And just now I've figured it out: it doesn't wok when caps lock is on! Works just fine when caps lock is off. But when it's on, it somehow doesn't reload...
by SuperbowserX
Fri Apr 12, 2019 12:40 pm
Forum: Ren'Py Questions and Announcements
Topic: Ren'Py OS 19.04.01 - Released
Replies: 21
Views: 4842

Re: Ren'Py OS 19.04.01 - Released

Lol I actually thought this would work well on the Raspberry Pi.
by SuperbowserX
Sat Apr 06, 2019 1:40 pm
Forum: Ren'Py Questions and Announcements
Topic: So what's changed in Ren'py? Good beginner guide?
Replies: 0
Views: 274

So what's changed in Ren'py? Good beginner guide?

Hi everyone! If you've been around the forum for a while, you may remember me. I've developed fun little side projects in Ren'py in the past. I was in the mood for it so I decided to try to make a simple project with the software. However, since I last used Ren'py (September), I have honestly forgot...
by SuperbowserX
Mon Sep 10, 2018 10:46 pm
Forum: Ren'Py Questions and Announcements
Topic: Hard request - restructure rollback/seen text to accommodate new paradigm?
Replies: 7
Views: 941

Re: Hard request - restructure rollback/seen text to accommodate new paradigm?

Not a bad idea. I suppose what I'd need to do is make an appension to the character class so that it can store the other variables in my custom Char() class. Then I could run a callback that does everything my say statement does. That actually sounds feasible. Maybe once I'm done coding the current ...
by SuperbowserX
Mon Sep 10, 2018 1:02 am
Forum: Ren'Py Questions and Announcements
Topic: Hard request - restructure rollback/seen text to accommodate new paradigm?
Replies: 7
Views: 941

Re: Hard request - restructure rollback/seen text to accommodate new paradigm?

It's fine, it's a very specific case and the vast majority of creators don't need it. I was just hoping that maybe there was some way to customize the seen text feature, but now that I think about it that'd be extremely difficult to code. Plus, maybe in the future, I can just rewrite the actual say ...
by SuperbowserX
Sun Sep 09, 2018 11:17 am
Forum: Ren'Py Questions and Announcements
Topic: Hard request - restructure rollback/seen text to accommodate new paradigm?
Replies: 7
Views: 941

Hard request - restructure rollback/seen text to accommodate new paradigm?

That is a very cryptic title, yes :D But it's hard to explain the problem concisely. This is admittedly a rather complex question that probably requires knowledge of Ren'py's *internal* workings, and it may require PyTom himself to answer it. Now, to fit the purposes of my game, I automate almost al...
by SuperbowserX
Tue Aug 28, 2018 1:42 pm
Forum: Ren'Py Questions and Announcements
Topic: How do you create an output text file?
Replies: 9
Views: 3310

Re: How do you create an output text file?

You can run Python statements in Ren'py. To run a Python statement at a specific point in your script, just use a python block. To run it at startup, just use an init python statement.

https://www.renpy.org/doc/html/python.html
by SuperbowserX
Sun Aug 26, 2018 4:28 pm
Forum: Ren'Py Questions and Announcements
Topic: Clockwise rotating fade animation?
Replies: 2
Views: 704

Clockwise rotating fade animation?

I'm making a visual novel that pays homage to an old game I love (Cause of Death), and in trying to recreate it's style, I want to recreate the way it handled timed choices. I'm looking for the transforms that can help handle a clockwise animation. Think of a clock with one big hand. Right now, the ...
by SuperbowserX
Sun Aug 26, 2018 4:27 am
Forum: Ren'Py Questions and Announcements
Topic: Make text in choice menu button align left/horizontally fill?
Replies: 7
Views: 2142

Re: Make text in choice menu button align left/horizontally fill?

Image

Thank you both, Borders(5, 5, 5, 5) is exactly what I wanted :) <3
by SuperbowserX
Sun Aug 26, 2018 2:49 am
Forum: Ren'Py Questions and Announcements
Topic: Make text in choice menu button align left/horizontally fill?
Replies: 7
Views: 2142

Re: Make text in choice menu button align left/horizontally fill?

Here's what that did: https://i.imgur.com/CLxGduC.png (For clarity, I did set the choice button width to 465; but even when I commented that line out the issue still persisted when the buttons were of default length.) The align did work (the text is aligned now). The problem here isn't quite the ali...