Skip to content

Instantly share code, notes, and snippets.

@Sin-Gala
Created October 22, 2023 16:21
Show Gist options
  • Save Sin-Gala/74ae9c5f35f7c6877ea1db36ff4b937b to your computer and use it in GitHub Desktop.
Save Sin-Gala/74ae9c5f35f7c6877ea1db36ff4b937b to your computer and use it in GitHub Desktop.
Pronouns choice system for Ren'py
label choose_pronouns_MC:
menu:
"What pronouns do you want to use?"
"He/Him":
python:
pronouns_MC = "He/Him"
pronoun_he = "He"
pronoun_himself = "Himself"
pronoun_him = "Him"
pronoun_be = "Is"
"She/Her":
python:
pronouns_MC = "She/Her"
pronoun_he = "She"
pronoun_himself = "Herself"
pronoun_him = "Her"
pronoun_be = "Is"
"They/Them":
python:
pronouns_MC = "They/Them"
pronoun_he = "They"
pronoun_himself = "Themselves"
pronoun_him = "Them"
pronoun_be = "Are"
"Main Char" "My pronouns are [pronouns_MC], correct?"
menu:
"Yes":
"Main Char" "Nice!"
"Other Char" "[pronoun_he!cl] [pronoun_be!l] very charming!"
"Another Char" "I LOVE [pronoun_him!u]!!!"
"No, let me change it":
"Main Char" "Oh, okay.."
jump choose_pronouns_MC
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment