Search found 6 matches

by ninjaK4T_06
Sat Jan 05, 2019 7:55 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Prevent empty text input/more obvious text input box?
Replies: 10
Views: 862

Re: Prevent empty text input/more obvious text input box?

hmm im not sure about the how to make the input more obvious. maybe theres a way to make the text cursor blink? but for the empty text, wouldn't this work? label something: $ res = renpy.input("\"Just...let me know if you find anything, okay?\"") if res == "": jump some...
by ninjaK4T_06
Sat Jan 05, 2019 5:54 am
Forum: Ren'Py Questions and Announcements
Topic: Don't continue from menu until all choices are clicked
Replies: 2
Views: 323

Re: Don't continue from menu until all choices are clicked

I have a menu where the main character asks a series of questions, then and only when it gets done to continue the story. I want the player to ask all 4 questions before the "finish" button shows up. I've tried a number of codes but so far I have failed at every turn. Thanks. Perhaps this...
by ninjaK4T_06
Fri Jan 04, 2019 1:10 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] how to put lil images before the text on this screen?
Replies: 2
Views: 353

Re: how to put lil images before the text on this screen?

Try adding 'hbox:' after 'for' line, like this: side "c r": area (280,50,1000, 600) viewport id "character screen": mousewheel True vbox: for c in random_characters: hbox: showif c.gender == "male": add "images/gender male.png" yalign 1 else: add "images...
by ninjaK4T_06
Thu Jan 03, 2019 7:20 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] how to put lil images before the text on this screen?
Replies: 2
Views: 353

[SOLVED] how to put lil images before the text on this screen?

I'm using this post to make random characters, and I made a screen thingy to view all the characters generated. I want to put images before the characters names, but when I try to add them, it just puts the image above the text like this??? Whenever I try to manually position the image using xpos an...
by ninjaK4T_06
Fri Nov 30, 2018 7:28 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] trying to see a list but it only says <store.Person object ...> ???
Replies: 4
Views: 441

Re: trying to see a list but it only says <store.Person object ...> ???

amend Person to include a __repr__ (or __str__ if you prefer) class Person(object): def __init__(self, name, gender, age): self.name = name self.gender = gender self.age = age def __repr__(self): return "Person: ({}, {}, {})".format( self.name, self.gender, self.age ) You might also want ...
by ninjaK4T_06
Fri Nov 30, 2018 6:36 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] trying to see a list but it only says <store.Person object ...> ???
Replies: 4
Views: 441

[SOLVED] trying to see a list but it only says <store.Person object ...> ???

I'm using this post to make random characters, but every time I try to see them by just putting- label start: "[random_characters]" it poops this out into the textbox: [<store.Person object at0x0ED2 5FF0>, <store.Person object at 0x0ED2 5A30>, ... ] and it goes on 5 total times, since that...