Search found 9 matches

by MaximeChaos
Sun Jun 11, 2017 8:39 am
Forum: Ren'Py Questions and Announcements
Topic: Making a screen insensitive while dialogue
Replies: 1
Views: 1129

Making a screen insensitive while dialogue

Hi ! :D I would like to make automatically insensitive a screen that serves to display my inventory and pause buttons every time a choice or a dialogue is in progress. I think that I have to add something in my "screen say" or "screen choice" in screens.rpy but I can't find what....
by MaximeChaos
Mon Feb 13, 2017 2:58 pm
Forum: Ren'Py Questions and Announcements
Topic: Room navigation and free movement
Replies: 9
Views: 6819

Re: Room navigation and free movement

label room: scene "bedroom empty.png" window hide show screen minimap call screen bedroom $ result = _return if result == "bed": hide screen bedroom "Oh I wish I could stay in bed forever...." elif result == "pc": etc. jump room screen bedroom: imagebutton au...
by MaximeChaos
Mon Feb 13, 2017 2:42 pm
Forum: Ren'Py Questions and Announcements
Topic: Customizing Preferences and Exit Menu
Replies: 7
Views: 1891

Re: Customizing Preferences and Exit Menu

Line 337 of Screens.rpy if you use the legacy theme interface. Line 712 if you use the new GUI. ############################################################################## # Preferences # # Screen that allows the user to change the preferences. # http://www.renpy.org/doc/html/screen_special.html#...
by MaximeChaos
Mon Feb 13, 2017 2:35 pm
Forum: Ren'Py Questions and Announcements
Topic: Screen image is not refreshing
Replies: 4
Views: 547

Re: Screen image is not refreshing

Hi ! I think that 1 and "1" is not interpreted the same way, 1 is a number while "1" is a name. So it should be something like that : $ gl = 13 $ r = 1 I just made this code in a new project to test it : init: $ r = 1 label start: show screen baba2 "ok" $ r = 4 "ok...
by MaximeChaos
Sun Feb 12, 2017 12:28 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved thanks to Divona]imagebuttons display issue
Replies: 7
Views: 1061

Re: imagebuttons focused without cursor on them (display iss

What is the expected behaviour when the value hit 0 or 10 ? The imagebutton should stop displaying, so that's why there is no "if beaute == 0" cause if it is there is no soustraction function. Same goes for the maximum, when it goes to 10 then the add function disappear cause it only show...
by MaximeChaos
Sun Feb 12, 2017 11:52 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved thanks to Divona]imagebuttons display issue
Replies: 7
Views: 1061

Re: imagebuttons focused without cursor on them (display iss

The thing is that screen is already a loop itself, so the more loop you put, that could cause the redraw of the image as seen on the video. [...] Like I said I already tried without the loop, and it result by the same issue. Here is what I did in the main script : hide screen dateetheure #hide the ...
by MaximeChaos
Sun Feb 12, 2017 6:35 am
Forum: Ren'Py Questions and Announcements
Topic: [Solved thanks to Divona]imagebuttons display issue
Replies: 7
Views: 1061

Re: imagebuttons focused without cursor on them (display iss

... (calling the screen and showing the screen in a label loop) ... Why do you call/show screen in label loop? Hi ! Showing the screen in a label loop so I can update stats display. label diploma: show screen creationperso call verification_stats $ renpy.pause (0.01) jump diploma But like I said I ...
by MaximeChaos
Sat Feb 11, 2017 10:07 pm
Forum: Ren'Py Questions and Announcements
Topic: Code doesn't seem to be working - show_two_window=True
Replies: 2
Views: 1105

Re: Code doesn't seem to be working - show_two_window=True

I think that it's because the New GUI interface doesn't need (and doesn't know) the show_two_window.
This code was meant for the Legacy Theme interface.
Here is a link for the GUI interface : https://www.renpy.org/dev-doc/html/gui. ... nd-namebox
by MaximeChaos
Sat Feb 11, 2017 9:47 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved thanks to Divona]imagebuttons display issue
Replies: 7
Views: 1061

[Solved thanks to Divona]imagebuttons display issue

Hello ! First of all, sorry for the mistakes I will make, I am french. So I made a character creation system, and everything works really fine (stats, name input, character customization, etc.) BUT I have a display issue. I can't find what the problem is here. I think it has to do with the way calcu...