Search found 16 matches
- Thu Oct 26, 2017 1:56 am
- Forum: Ren'Py Questions and Announcements
- Topic: Change textbutton color [SOLVED]
- Replies: 2
- Views: 592
Re: Change textbutton color
Perfect. Thank you!
- Wed Oct 25, 2017 11:04 am
- Forum: Ren'Py Questions and Announcements
- Topic: Change textbutton color [SOLVED]
- Replies: 2
- Views: 592
Change textbutton color [SOLVED]
Hey there, sorry for this noob question. I have the following code: vbox: for i in items: if " (disabled)" in i.caption: $ newcaption = i.caption.replace(" (disabled)", "") textbutton newcaption action None else: textbutton i.caption action i.action under the choices me...
- Tue Oct 17, 2017 7:06 am
- Forum: Ren'Py Questions and Announcements
- Topic: Display Text while renpy.pause() [SOLVED]
- Replies: 4
- Views: 2000
Re: Display Text while renpy.pause()
I considered this possibility, I just would have prefered it without a choice menu being displayed. I currently have this while True: "{i}You now have the option to move, talk and look around{/i}{w=9999}" This gives the desired effect. There is only one small problem. Everytime the user cl...
- Tue Oct 17, 2017 4:22 am
- Forum: Ren'Py Questions and Announcements
- Topic: Display Text while renpy.pause() [SOLVED]
- Replies: 4
- Views: 2000
Re: Display Text while renpy.pause()
Thank you very much. This was what I was looking for (almost). I use it for kind of a tutorial where the user can only get out by using the quick menu. Is there a way to make this unskippable? Like renpy.pause(999, hard=True)? MY Idea: while True: "{i}You now have the option to move, talk and l...
- Mon Oct 16, 2017 9:46 am
- Forum: Ren'Py Questions and Announcements
- Topic: Display Text while renpy.pause() [SOLVED]
- Replies: 4
- Views: 2000
Display Text while renpy.pause() [SOLVED]
Hey there
This has possibly already been asked but I couldn't find anything.
$renpy.pause() generates an empty textbox.
Can I have text displayed in there?
Thanks
This has possibly already been asked but I couldn't find anything.
$renpy.pause() generates an empty textbox.
Code: Select all
x"ABC DEF"
$renpy.pause(5)
#results in Textbox displaying ABC DEF and a second empty textbox during the pause...
Thanks
- Mon Oct 16, 2017 7:14 am
- Forum: Ren'Py Questions and Announcements
- Topic: How to read strings from array [SOLVED]
- Replies: 7
- Views: 1457
Re: How to read strings from array [kinda SOLVED]
Thank you both very much, that finally worked.
- Mon Oct 16, 2017 5:36 am
- Forum: Ren'Py Questions and Announcements
- Topic: How to read strings from array [SOLVED]
- Replies: 7
- Views: 1457
Re: How to read strings from array
I am honestly sorry but I can't get this to work. I started a new project to eliminate the rest of the script as error: Whenever I use "for note in notes" it tells me File "game/script.rpy", line 16: expected statement. for note in notes: Ren'Py Version: Ren'Py 6.99.12.4.2187 Whe...
- Mon Oct 16, 2017 4:36 am
- Forum: Ren'Py Questions and Announcements
- Topic: How to read strings from array [SOLVED]
- Replies: 7
- Views: 1457
Re: How to read strings from array
Code: Select all
$notes.append("Test")
python:
for note in notes:
"[note]"
- Mon Oct 16, 2017 4:01 am
- Forum: Ren'Py Questions and Announcements
- Topic: How to read strings from array [SOLVED]
- Replies: 7
- Views: 1457
How to read strings from array [SOLVED]
Hey there I have a array of strings $notes[] Strings get filled into that array based on user choices. $notes.append("While talking to Person A I found out that XYZ") No I want to read out all notes: label notes: foreach note in notes: *Read out the note* I do have some coding background b...
- Fri Mar 25, 2016 9:38 am
- Forum: Ren'Py Questions and Announcements
- Topic: [SOLVED]Vertical bar doesn't affect settings
- Replies: 2
- Views: 458
Re: Vertical bar doesn't affect settings
Now I feel stupid
Thanks for the tip.
Thanks for the tip.
- Fri Mar 25, 2016 5:52 am
- Forum: Ren'Py Questions and Announcements
- Topic: [SOLVED]Vertical bar doesn't affect settings
- Replies: 2
- Views: 458
[SOLVED]Vertical bar doesn't affect settings
Hello everyone. I am currently trying to customize my gui and I have the following problem: I want to use a vertical bar for Audio and Textspeed. My Code: vbar pos (486, 226) value Preference("text speed") style "pref_slider" init -2 python: style.pref_slider.bar_vertical = True ...
- Wed Aug 26, 2015 12:11 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [SOLVED] LiveComposite with True/False
- Replies: 2
- Views: 1175
[SOLVED] LiveComposite with True/False
Hello everyone! In one of my projects I am using a live composite: init python: foot1 = False foot2 = False foot3 = False def dancefloor(st, at): # combine the dressup items into one displayable return LiveComposite( (1920, 1080), # image size (0, 0), "images/cg.png", (0, 0), "images/...
- Tue Aug 11, 2015 12:15 pm
- Forum: Creator Discussion
- Topic: abc of cool names (boys, girls and family names)
- Replies: 1
- Views: 668
abc of cool names (boys, girls and family names)
I have made a list of my favorite names for girls and boys to use for your VN characters. They are Russian, English, Teutonic, Scandinavian, African, Native-American and Japanese. If you have any question about origin or meaning, feel free to ask in the comments. BOY Arata Barnaby Cabot Dai Eiji Fin...
- Sun Aug 02, 2015 4:45 pm
- Forum: Ren'Py Questions and Announcements
- Topic: [SOLVED] Customizing In-Game Menu position?
- Replies: 3
- Views: 633
Re: [SOLVED] Customizing In-Game Menu position?
Thanks a lot to both of you!
- Thu Jul 30, 2015 3:40 am
- Forum: Ren'Py Questions and Announcements
- Topic: [SOLVED] Customizing In-Game Menu position?
- Replies: 3
- Views: 633
[SOLVED] Customizing In-Game Menu position?
Hi I have the following problem: In my game, the player has 3 possible answers to the given question. If I define this as a menu they are all centered. I want them to look like in the picture (yellow part). I already read "how to customize menus" and couldn't find anything about position.....