Is it possible to read variables through renpy.random.choice function? As of now it prints raw variable [name] but it should print Steve instead.
Example code:
Example code:
Python:
define npc = Character("Jake")
$ name = "Steve"
$ Text = renpy.random.choice([
"Okay, [name].",
"Alright, [name].",
"If you say so, [name]."
])
npc "[Text]"