- Sep 26, 2019
- 1,014
- 2,144
Right now I've pretty much got the name your own character thing down, however, I want to give the player the option to have girls call him a different name during sex, while the dialogue name card still displays his original name.
So, here is the script for the intro:
And pretty much I can use "p" to use the name for the character card or put in [p] if I want the characters to say his name in dialogue. Standard "choose your own name" affair, works pretty well.
However, I'd like to have a second name the girls can refer to the MC as during sex or special occasions. I've tried several methods. Lets say the character they picked was "Bob" but they want the girls to call them," honey" during sex. How do I do that?
I've tried putting
It changes the name to whatever they picked, so if I picked "sensei" they will say: "I love having sex with sensei" but the player name will also be permanently changed to sensei.
Putting
The other characters will simply refer to [m] as [mName].
So, here is the script for the intro:
Python:
label start:
define p = Character( "[pName]"),color="#ff0000")
$ pname = renpy.input("Choose a different name or stick with Logan", default="Logan").strip().capatalize()
However, I'd like to have a second name the girls can refer to the MC as during sex or special occasions. I've tried several methods. Lets say the character they picked was "Bob" but they want the girls to call them," honey" during sex. How do I do that?
I've tried putting
Python:
label start:
define m= Character( "[pName]"),color="#ff0000")
$ pname = renpy.input("Choose a name for her to use during sex", default="Logan").strip().capatalize()
Putting
Python:
label start:
define m= Character( "[mName]"),color="#ff0000")
$ mname = renpy.input("Choose a name for her to use during sex", default="Logan").strip().capatalize()