- Aug 27, 2017
- 108
- 151
Hello,
I'm new at Renpy and I can't find the answer I'm searching.
I want to change the way the player call a character by using a variable to change the relationship between them but my tries won't work.
I try with a character named Joe Thetest:
I dont want to change the name by just using $ Joe_call = "...." because I want to make quests with some reward and this try can help me to understant how to do it.
Thank for helping
I'm new at Renpy and I can't find the answer I'm searching.
I want to change the way the player call a character by using a variable to change the relationship between them but my tries won't work.
I try with a character named Joe Thetest:
default Joe_call = 'Mr. Thetest'
#File 1
label Joe_relationship:
if Joe_R >= 10:
$ Joe_call = 'Joe'
else:
$Joe_call = "Mr.Thetest"
#File 2
label tchat:
#Player do some quests that raise Joe_relationship to 10 and other
$ Joe_relationship +=10
I dont want to change the name by just using $ Joe_call = "...." because I want to make quests with some reward and this try can help me to understant how to do it.
Thank for helping