Search found 5 matches

by RadicalMario
Mon Dec 04, 2017 4:22 pm
Forum: Ren'Py Questions and Announcements
Topic: How would you change the vertical positioning of text during a choice menu?
Replies: 7
Views: 704

Re: How would you change the vertical positioning of text during a choice menu?

You can put the dialogue under the menu: menu: e "This will be show up during your choices." "Ok": pass "Oh, really?": pass Hm...doesn't seem to be working. Do you have to do anything specific to make it work? EDIT: I found out how to move the text around so that it fi...
by RadicalMario
Sun Dec 03, 2017 7:58 pm
Forum: Ren'Py Questions and Announcements
Topic: How would you change the vertical positioning of text during a choice menu?
Replies: 7
Views: 704

Re: How would you change the vertical positioning of text during a choice menu?

Search for "choice" in screens.rpy. Should be a simple matter of changing the ypos or y_anchor of choice_vbox. edit: originally said options.rpy rather than screens.rpy. Maybe I wasn't specific enough. I don't want to move the choice buttons, but instead the text that shows up in the text...
by RadicalMario
Sat Dec 02, 2017 7:44 pm
Forum: Ren'Py Questions and Announcements
Topic: How would you change the vertical positioning of text during a choice menu?
Replies: 7
Views: 704

How would you change the vertical positioning of text during a choice menu?

So I've made a lot of progress in my little coding experiment demo, but now I have one problem. I was shifting the text box and dialogue to make things look nicer and it works fine in all pieces of dialogue except the choice screen dialogue. Whenever a choice screen is brought up, the text will shif...
by RadicalMario
Wed Nov 29, 2017 10:35 pm
Forum: Ren'Py Questions and Announcements
Topic: How exactly do if/else statements work?
Replies: 2
Views: 494

How exactly do if/else statements work?

Alright, so I was able to make a choice system for my game, but not necessarily a branching path, because the game won't remember the choices made for later on. I found out you can use if/else statements, but when I tried it, it didn't work. I'll try to give an example that I think would be right, b...
by RadicalMario
Wed Nov 29, 2017 2:44 pm
Forum: Ren'Py Questions and Announcements
Topic: How would I get my game to remember answers to choices?
Replies: 2
Views: 402

How would I get my game to remember answers to choices?

Hi! I'm quite new to Ren'py, and I'm still learning the ropes. I've been able to do some things, but someone I'm making my game with came up with an idea, and I want to implement it. Basically, I want to have a questionnaire at a part in my game where the player is presented with choices to a questi...