Search found 4 matches

by TheFandomPerson
Thu Jul 15, 2021 6:47 pm
Forum: Ren'Py Questions and Announcements
Topic: Naming Two Characters Manually
Replies: 2
Views: 1176

Re: Naming Two Characters Manually

You do it exactly like you do for naming PC. There is no functional difference between naming one character or another: default PC_name = 'Protagonist' default NPC_name = 'Friend' define PC = Character([PC_name]) define NPC= Character([NPC_name]) # . . . $ PC_name = renpy.input('What is your name?'...
by TheFandomPerson
Thu Jul 15, 2021 6:32 pm
Forum: Ren'Py Questions and Announcements
Topic: I don't understand this error
Replies: 2
Views: 512

Re: Re: I don't understand this error

Yes! That worked! Tysm! :D
by TheFandomPerson
Thu Jul 15, 2021 5:54 pm
Forum: Ren'Py Questions and Announcements
Topic: I don't understand this error
Replies: 2
Views: 512

I don't understand this error

So here's the thing I'm working on (don't ask why it's Pokemon): label choose_starter: p "So, you're bringing a Pokemon with you? Which one?" menu: "Houndour": p "You're bringing a Houndour?" "Yes": jump houndour_confirm "No": jump choose_starter &qu...
by TheFandomPerson
Sat Jul 10, 2021 1:53 am
Forum: Ren'Py Questions and Announcements
Topic: Naming Two Characters Manually
Replies: 2
Views: 1176

Naming Two Characters Manually

Let's say I name the Player Character. If the Player Character has, say, an NPC friend in the game, is it possible to name the NPC friend as well? Like, manually input my own name for the NPC?