Search found 12 matches
- Tue Apr 11, 2017 10:30 am
- Forum: Ren'Py Questions and Announcements
- Topic: Changable timed menu color
- Replies: 2
- Views: 329
Re: Changable timed menu color
I see, so instead of the timer, its a bar. I have tried your code and it works exactly as I wanted. I'll be using this code for future projects. Thx SuperbowserX 
- Tue Apr 11, 2017 4:28 am
- Forum: Ren'Py Questions and Announcements
- Topic: Changable timed menu color
- Replies: 2
- Views: 329
Changable timed menu color
Hi guys, I'm back with another question that I need some help with, especially with the timed menus. So I know how to code it and it works perfectly but I've been wondering about something. Can the timer (the number on the top left screen) be changed to another color? If so, how can I do it? Here's ...
- Sun Apr 09, 2017 1:14 am
- Forum: Ren'Py Questions and Announcements
- Topic: remembering point based option
- Replies: 5
- Views: 646
Re: remembering point based option
Thx trooper! It works exactly as I wanted it now 
- Sat Apr 08, 2017 9:41 pm
- Forum: Ren'Py Questions and Announcements
- Topic: remembering point based option
- Replies: 5
- Views: 646
Re: remembering point based option
I see, but what about multiple outcomes and not just win or lose? Cuz I wanna include this reference in a conversation in the future, and the winner can do whatever they want to the loser ( like total domination, almost lost and lost) kinda like: k "So what are we gonna do now?" k "You're going to h...
- Sat Apr 08, 2017 1:28 pm
- Forum: Ren'Py Questions and Announcements
- Topic: remembering point based option
- Replies: 5
- Views: 646
remembering point based option
Hi guys, long time no see. Now I have a question on how to do this little trick. So I made a quiz-like minigame, like this (and there's a total of ten questions and all of the answers are correct but SC (Supporting Character) needed specific and special answers from MC but that's not the point since...
- Tue Aug 30, 2016 9:05 am
- Forum: Ren'Py Questions and Announcements
- Topic: Concerning the centered text
- Replies: 2
- Views: 263
Re: Concerning the centered text
Thanks a lot, worked like a charm
Still a newbie at this so yeah

Still a newbie at this so yeah
- Tue Aug 30, 2016 1:00 am
- Forum: Ren'Py Questions and Announcements
- Topic: Concerning the centered text
- Replies: 2
- Views: 263
Concerning the centered text
I have another question for the centered text. How do you change the font and size of it? Is it using the normal: "{size=10}This text is small{/size} while this text is large" code? and is it possible to insert transitions? Mostly because the text just appeared out of nowhere and it's not easy for t...
- Tue Aug 23, 2016 7:22 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Help with the IF fuction
- Replies: 12
- Views: 1015
Re: Help with the IF fuction
Ok, problem solved for that. But what about the continued story? Is it still the same and we use the if fuction or the elif, etc? For eg. after the teacher starts and explains a few things or so before asking a question to MC and the different characters commented on her answer? Cuz when I changed t...
- Mon Aug 22, 2016 8:03 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Help with the IF fuction
- Replies: 12
- Views: 1015
Re: Help with the IF fuction
You have been very helpful, Jeremy, and I only made that code because that's the much shorter version of it. But that is not answering my question. My question still lies with: how to "insert" the menu with the if fuction so for eg. if you choose an option, you'll get a special conversation with a c...
- Sun Aug 21, 2016 8:15 pm
- Forum: Ren'Py Questions and Announcements
- Topic: Help with the IF fuction
- Replies: 12
- Views: 1015
Re: Help with the IF fuction
I tried making the short version of the original so I hope it's understandable. $ front = False $ middle = False $ back = False c "where are you going to seat?" menu: "front": jump back "middle": jump middle "back": jump back label front: $ front = True a "You're sitting with me? Ok then." jump stor...
- Thu Aug 18, 2016 4:09 am
- Forum: Ren'Py Questions and Announcements
- Topic: Help with the IF fuction
- Replies: 12
- Views: 1015
Re: Help with the IF fuction
My problem lies more in = "How to insert a menu in an if fuction? And how to make that menu exclusive for that single if fuction and not the whole story/code?" and believe me, the whole code for this game is quite long so I'm not sure where to start copying and pasting the necessarry code for it. An...
- Thu Aug 18, 2016 2:21 am
- Forum: Ren'Py Questions and Announcements
- Topic: Help with the IF fuction
- Replies: 12
- Views: 1015
Help with the IF fuction
There's a small problem I'm trying to solve but I'm still a newbie on programming so can someone help me? I want the menu to be a part of the if statement as I made a menu choosing at the back, middle and front and each menu represents a character. The MC has to choose which seat she wants to take a...