Search found 7 matches

by wingzoffeather
Wed Nov 26, 2014 9:55 pm
Forum: Ren'Py Questions and Announcements
Topic: [Solved] How to make textbutton jump more than two labels?
Replies: 2
Views: 457

[Solved] How to make textbutton jump more than two labels?

Hi, I need help obviously. I'm making a dating sim. I want the player to be able to talk to the characters via a text button, "talk". Every time the button is clicked, it should jump a new label (a new conversation). I know my current code is wrong but I can't figure out how to make one bu...
by wingzoffeather
Fri Aug 08, 2014 11:32 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Make imagebutton clickable only once
Replies: 8
Views: 6584

Re: Make imagebutton clickable only once

YEESSS!!! It worked! Thank you so much for your time and patience!!! You have my deep gratitude. I'll post the code in my game so everyone can see it in context in case anyone else gets stuck on this: In script.rpy: label start: $ seen_labels = set() ... label living_room: $ seen_labels.add("li...
by wingzoffeather
Fri Aug 08, 2014 10:56 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Make imagebutton clickable only once
Replies: 8
Views: 6584

Re: Make imagebutton clickable only once

Thank you. I implemented that code and I'm STILL back where I started. Any more ideas? I'm so stumped...
by wingzoffeather
Fri Aug 08, 2014 9:22 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Make imagebutton clickable only once
Replies: 8
Views: 6584

Re: Make imagebutton clickable only once

Thank you so much for replying and trying to help me. but I tried that and it's still the same though... My current screens.rpy code: screen arrow_screen1: if renpy.seen_label('living room'): imagebutton xalign 0.45 yalign 0.45: idle ("button left.png") hover ("button left hover.png&q...
by wingzoffeather
Fri Aug 08, 2014 8:21 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Make imagebutton clickable only once
Replies: 8
Views: 6584

Re: Make imagebutton clickable only once

Thanks for replying! I tried to take your advice and I'm back where I started: the player can click the same imagebutton twice. This is my screens.rpy code now: screen arrow_screen1: imagebutton xalign 0.45 yalign 0.45: idle ("button left.png") hover ("button left hover.png") act...
by wingzoffeather
Fri Aug 08, 2014 4:15 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Make imagebutton clickable only once
Replies: 8
Views: 6584

[SOLVED] Make imagebutton clickable only once

Hi, I'm new to using Ren'Py (and making visual novels and programming in general). I just want to say, so far this forum has been very helpful to me. But one thing is stumping me. I want to make the player travel through a house (visit all the rooms) completely once and trigger the next event/label....