Search found 10 matches

by StormyThunder
Mon Dec 11, 2023 4:43 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] main menu troubles
Replies: 5
Views: 2336

Re: main menu troubles

I don't need help with my new idea, I'll just add smaller buttons to the title screen and figure it out like that, but thank you :)
Taking that line out worked, thank you very much :)
by StormyThunder
Fri Dec 08, 2023 4:51 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] main menu troubles
Replies: 5
Views: 2336

Re: main menu troubles

I've decided to do a less complicated idea, but I really do appreciate your response :)

How would I hide the image buttons after another screen shows up and make them reappear when I back out to the main menu again?
by StormyThunder
Fri Dec 08, 2023 7:30 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] main menu troubles
Replies: 5
Views: 2336

Re: main menu troubles

#1: I don't know what you mean by "the images", but when you give a (main menu) screen the tag "menu", other screens with the same tag will hide. screen mymenu(): tag menu # ... #2: Isn't the main menu (screen) the screen that shows all the other menu options (like settings, hel...
by StormyThunder
Thu Dec 07, 2023 8:51 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] main menu troubles
Replies: 5
Views: 2336

[SOLVED] main menu troubles

I have two questions: #1: How can I make the images disappear when a different menu screen comes up? (ex: choosing the settings button and all images disappear until return is clicked) Code (edited screens.rpy): screen navigation(): fixed: style_prefix "navigation" xpos gui.navigation_xpos...
by StormyThunder
Mon Oct 09, 2023 1:36 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Making multiple endings using choice menu or imagebuttons?
Replies: 2
Views: 1018

Re: Making multiple endings using choice menu or imagebuttons?

I had a little trouble because I ordered some things wrong, but it works, thank you so much!
by StormyThunder
Sun Oct 08, 2023 8:40 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Making multiple endings using choice menu or imagebuttons?
Replies: 2
Views: 1018

[SOLVED] Making multiple endings using choice menu or imagebuttons?

So, I'm trying to make multiple endings for my game, but what I want to do exactly kind of specific so I'll try to be as clear as I can. I want the first play through to not show any screen for choosing an ending/route until the game is played once. When the game is started a second time, I want to ...
by StormyThunder
Tue Aug 29, 2023 3:29 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]NSFW and Gore toggles
Replies: 3
Views: 427

Re: NSFW and Gore toggles

I don't know what your code is about, so here is what comes to mind: Do your filenames include brackets like you have inside the string? Don't do that! Or are "nsfw" and "sfw" some kind of variables you like to include there? label nsfw_scene: if persistent.nsfw_enabled: show ex...
by StormyThunder
Mon Aug 28, 2023 9:26 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]NSFW and Gore toggles
Replies: 3
Views: 427

[SOLVED]NSFW and Gore toggles

I have asked around since yesterday if anyone could help (Ren'py discord and reddit) but none of the code given seems to work. I've been told that half of my code is good, so I won't post that in case someone wants to look at it, but it's this one part that I can't figure out: default persistent.nsf...
by StormyThunder
Thu Aug 24, 2023 3:32 pm
Forum: Ren'Py Questions and Announcements
Topic: [solved]Transition bugs???
Replies: 3
Views: 341

Re: Transition bugs???

Isn't "dissolve" just a pre-defined function that equals "Dissolve(0.2)"? Something like that I think. It would be easier to understand your problem if your sentences were a little shorter. After reading it multiple times, I still don't get it. xD Maybe you could post some code ...
by StormyThunder
Wed Aug 23, 2023 7:10 pm
Forum: Ren'Py Questions and Announcements
Topic: [solved]Transition bugs???
Replies: 3
Views: 341

[solved]Transition bugs???

So I've never had a problem with transitions, I understand the difference between "dissolve" and "Dissolve()", however I don't know what is going on with it all of a sudden. I loaded up my game to look at a background I had finished recently, and when I activated a save file righ...