Search found 16 matches

by Mangescom
Thu Oct 26, 2017 1:56 am
Forum: Ren'Py Questions and Announcements
Topic: Change textbutton color [SOLVED]
Replies: 2
Views: 461

Re: Change textbutton color

Perfect. Thank you!
by Mangescom
Wed Oct 25, 2017 11:04 am
Forum: Ren'Py Questions and Announcements
Topic: Change textbutton color [SOLVED]
Replies: 2
Views: 461

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...
by Mangescom
Tue Oct 17, 2017 7:06 am
Forum: Ren'Py Questions and Announcements
Topic: Display Text while renpy.pause() [SOLVED]
Replies: 4
Views: 1758

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...
by Mangescom
Tue Oct 17, 2017 4:22 am
Forum: Ren'Py Questions and Announcements
Topic: Display Text while renpy.pause() [SOLVED]
Replies: 4
Views: 1758

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...
by Mangescom
Mon Oct 16, 2017 9:46 am
Forum: Ren'Py Questions and Announcements
Topic: Display Text while renpy.pause() [SOLVED]
Replies: 4
Views: 1758

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.

Code: Select all

x"ABC DEF"
$renpy.pause(5)
#results in Textbox displaying ABC DEF and a second empty textbox during the pause...
Can I have text displayed in there?

Thanks
by Mangescom
Mon Oct 16, 2017 7:14 am
Forum: Ren'Py Questions and Announcements
Topic: How to read strings from array [SOLVED]
Replies: 7
Views: 1242

Re: How to read strings from array [kinda SOLVED]

Thank you both very much, that finally worked. :D
by Mangescom
Mon Oct 16, 2017 5:36 am
Forum: Ren'Py Questions and Announcements
Topic: How to read strings from array [SOLVED]
Replies: 7
Views: 1242

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...
by Mangescom
Mon Oct 16, 2017 4:36 am
Forum: Ren'Py Questions and Announcements
Topic: How to read strings from array [SOLVED]
Replies: 7
Views: 1242

Re: How to read strings from array

Code: Select all

$notes.append("Test")
python:
    for note in notes:
         "[note]"
Doesn't return anything. Any ideas on that?
by Mangescom
Mon Oct 16, 2017 4:01 am
Forum: Ren'Py Questions and Announcements
Topic: How to read strings from array [SOLVED]
Replies: 7
Views: 1242

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...
by Mangescom
Fri Mar 25, 2016 9:38 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Vertical bar doesn't affect settings
Replies: 2
Views: 420

Re: Vertical bar doesn't affect settings

Now I feel stupid :wink:
Thanks for the tip.
by Mangescom
Fri Mar 25, 2016 5:52 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED]Vertical bar doesn't affect settings
Replies: 2
Views: 420

[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 ...
by Mangescom
Wed Aug 26, 2015 12:11 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] LiveComposite with True/False
Replies: 2
Views: 1112

[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/...
by Mangescom
Tue Aug 11, 2015 12:15 pm
Forum: Creator Discussion
Topic: abc of cool names (boys, girls and family names)
Replies: 1
Views: 616

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...
by Mangescom
Thu Jul 30, 2015 3:40 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Customizing In-Game Menu position?
Replies: 3
Views: 584

[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.....