Search found 6 matches

by daisy
Mon Jun 17, 2019 4:45 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Help with Customizing renpy.input
Replies: 5
Views: 873

Re: Help with Customizing renpy.input

Ah, this is exactly what I've been looking for! Thank you so much! :D

And in the future, there will be way more than just a handful of options. The few that I used were just for testing purposes. :D
by daisy
Sun Jun 16, 2019 6:05 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Help with Customizing renpy.input
Replies: 5
Views: 873

Re: Help with Customizing renpy.input

Pressing enter to progress doesn't seem to work. Furthermore, is there a way to include different prompts in the screen without having to make multiple screens with different prompts? Here's an example of what I've been prototyping thus far, for reference on what I mean: (I've only started seriously...
by daisy
Sat Jun 15, 2019 1:00 am
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Help with Customizing renpy.input
Replies: 5
Views: 873

[SOLVED] Help with Customizing renpy.input

I'm making a short project that frequently utilizes renpy.input. I'd very much like to have the text (both prompt and response) centered in the screen and with a custom background (like a textbox) when the player is inputting text, as to differentiate it from general dialogue from characters. Is the...
by daisy
Sun Mar 10, 2019 12:58 pm
Forum: Ren'Py Questions and Announcements
Topic: [SOLVED] Player name not showing up for text
Replies: 7
Views: 595

Re: Player name not showing up for text

Try defining your character's name at the beginning, like this: define p = Character("[player]") label start: python: player = renpy.input("What's your name?", default = "Bob") player = player.strip() if not player: player = "Bob" p "My name is [player].&...
by daisy
Thu Mar 07, 2019 7:38 pm
Forum: Ren'Py Questions and Announcements
Topic: Help with Custom Quit Prompts
Replies: 3
Views: 453

Re: Help with Custom Quit Prompts

Ah - it works exactly as intended now! Thank you!!
by daisy
Thu Mar 07, 2019 1:29 am
Forum: Ren'Py Questions and Announcements
Topic: Help with Custom Quit Prompts
Replies: 3
Views: 453

Help with Custom Quit Prompts

Hello - I would like to have a custom "Are you sure you want to quit?" message in my project, and I've succeeded in having it display the custom message in the *GAME MENU,* but not when the player chooses to end the game by closing out the window. When you attempt to quit like this during ...