Search found 4 matches

by Korbiwe
Fri Mar 16, 2018 1:25 pm
Forum: Ren'Py Questions and Announcements
Topic: Merging the choice menu and dialogue box
Replies: 3
Views: 718

Re: Merging the choice menu and dialogue box

Also, the thought to

Code: Select all

define menu
never crossed my mind, but it's the perfect solution.
by Korbiwe
Fri Mar 16, 2018 1:23 pm
Forum: Ren'Py Questions and Announcements
Topic: Merging the choice menu and dialogue box
Replies: 3
Views: 718

Re: Merging the choice menu and dialogue box

Damn! Thank you, @Ocelot. The answer was always right under my nose, but I kept overlooking it. Something like NVL screen is just what I need.
by Korbiwe
Fri Mar 16, 2018 9:27 am
Forum: Ren'Py Questions and Announcements
Topic: Merging the choice menu and dialogue box
Replies: 3
Views: 718

Merging the choice menu and dialogue box

I'm quite new to Ren'Py, but pretty experienced in Python. What I'm trying to do is to merge dialogue box with choice menu and the history thingy. I've tried various things like trying to retrieve a current "choice" screen while being in the "say" screen, and make textbuttons out...
by Korbiwe
Mon Jul 17, 2017 8:14 am
Forum: Development of Ren'Py
Topic: Bug: Sets in dictionaries not using RevertableSet
Replies: 1
Views: 803

Bug: Sets in dictionaries not using RevertableSet

So, I have a dictionary inside an init python block inside a class with keys being strings and values being sets of strings: self.trait_table = { 'positive' : { 'curiosity', 'responsiveness', 'mindfulness', 'responsibility' }, 'negative' : { 'mean', 'passive', 'inattentiveness', 'deceitfulness' }, '...