Search found 12 matches

by playerprophet
Fri Feb 01, 2019 12:21 pm
Forum: Ren'Py Questions and Announcements
Topic: NVL-mode Menu not displaying in 7.13
Replies: 1
Views: 253

NVL-mode Menu not displaying in 7.13

Note: This is not actually a problem I need solving! I just wanted to have it logged somewhere for other developers, because I didn't see any discussion of it when I was looking for help. Okay so now that the preamble is over. I'm making a choice-heavy game in NVL-mode. The NVL-mode menu was not di...
by playerprophet
Mon Jan 01, 2018 9:32 pm
Forum: Ren'Py Questions and Announcements
Topic: Splash Screen Infinite Loop
Replies: 22
Views: 3037

Re: Splash Screen Infinite Loop

Your suspicions are right -- this is causing the same problem.

I've got a whole backup on github. I'll send you a PM to get your email.
by playerprophet
Mon Jan 01, 2018 7:43 pm
Forum: Ren'Py Questions and Announcements
Topic: Splash Screen Infinite Loop
Replies: 22
Views: 3037

Re: Splash Screen Infinite Loop

Thanks friends!!! But I'm still not sure what to do to fix the problem. Where do I put the return? What replaces before_main_menu?
by playerprophet
Sun Dec 31, 2017 11:54 am
Forum: Ren'Py Questions and Announcements
Topic: Splash Screen Infinite Loop
Replies: 22
Views: 3037

Re: Splash Screen Infinite Loop

As far as I remember, I haven't edited the main menu at all. screen main_menu(): tag menu style_prefix "main_menu" add gui.main_menu_background frame: pass if gui.show_name: vbox: text "[config.name!t]": style "main_menu_title" text "[config.version]": style &...
by playerprophet
Sun Dec 31, 2017 12:42 am
Forum: Ren'Py Questions and Announcements
Topic: Splash Screen Infinite Loop
Replies: 22
Views: 3037

Re: Splash Screen Infinite Loop

image white = "#fff" #Black Background image splash = "content_warning.png" transform slow_dissolve: on show: alpha 0 linear 2.0 alpha 1 on hide: linear 2.0 alpha 0 label splashscreen: scene white $ renpy.pause(1, hard=True) show splash at slow_dissolve $ renpy.pause(2, hard=Tru...
by playerprophet
Sat Dec 30, 2017 8:28 pm
Forum: Ren'Py Questions and Announcements
Topic: Splash Screen Infinite Loop
Replies: 22
Views: 3037

Re: Splash Screen Infinite Loop

God this looks super nice but it still loops infinitely!!!

I don't understand whyyyy
by playerprophet
Sat Dec 30, 2017 6:05 pm
Forum: Ren'Py Questions and Announcements
Topic: Splash Screen Infinite Loop
Replies: 22
Views: 3037

Re: Splash Screen Infinite Loop

You're the best <3 I want it to start up with the content warning. Either on a timer, or when clicked would be good. Either one, but I think clicked would work better to make sure everyone sees it before proceeding. Here's the pic: https://gyazo.com/0d57baa4776bdd91539c443893759204 We could probably...
by playerprophet
Sat Dec 30, 2017 4:52 pm
Forum: Ren'Py Questions and Announcements
Topic: Splash Screen Infinite Loop
Replies: 22
Views: 3037

Re: Splash Screen Infinite Loop

I'm so confused about why this still isn't working. Simply remove everything you have added and only put what i wrote, then it should work. Did you mean the content of your December 27th post? Or your December 30th post? I've tried both! o(-< The latter one just shows black before transitioning into...
by playerprophet
Sat Dec 30, 2017 1:00 pm
Forum: Ren'Py Questions and Announcements
Topic: Splash Screen Infinite Loop
Replies: 22
Views: 3037

Re: Splash Screen Infinite Loop

Thank you guys so much for your help. I really appreciate it. Thanks for your code mitoky!! This does seem to work except that the screen opens on black. Everything else functions as desired. In previous attempts it looks like "show splash" worked okay, but if I add or replace "add &q...
by playerprophet
Sat Dec 30, 2017 12:08 am
Forum: Ren'Py Questions and Announcements
Topic: Splash Screen Infinite Loop
Replies: 22
Views: 3037

Re: Splash Screen Infinite Loop

here's how the game starts with what you have. splashscreen > before_main_menu > call splashscreen > continue to before_main_menu > call splashecreen (again) etc etc YES this is where I'm stuck. Using this code that you suggested, imperf3kt, seems to almost solve my problem, except that the opening...
by playerprophet
Wed Dec 27, 2017 4:19 pm
Forum: Ren'Py Questions and Announcements
Topic: Splash Screen Infinite Loop
Replies: 22
Views: 3037

Re: Splash Screen Infinite Loop

Imperf3kt wrote: Sun Dec 24, 2017 3:22 pm Contrary to its name a splasuscreen is not a screen, you cannot use screen language within it. You must also includea return.
You mean, in the screen block? I tried that but it doesn't seem to work.
by playerprophet
Sun Dec 24, 2017 12:50 pm
Forum: Ren'Py Questions and Announcements
Topic: Splash Screen Infinite Loop
Replies: 22
Views: 3037

Splash Screen Infinite Loop

Hi everyone! Long-time browser first time poster. I'm working on a game that absolutely needs to be preceded with a content warning. In looking for a splash screen tutorial I found this thread: https://lemmasoft.renai.us/forums/viewtopic.php?f=51&t=46121 . Since what I was going for was somethin...