Having trouble with showing relationships

For some reason, it won’t show all of my relationships, even if they meet the “if” condition. I thought it would be quite simple if the MC is visiting with their parents, then they’d visit with their parents. If they’re a foreigner learning Japanese, they’d make a friend named Taylor who’s also in the class, and the same case if they’re a Japanese person that’s learning English, they’d be friends with Ryu. I don’t know what’s going wrong.

*if mc_visit = true
   *stat_chart
    percent mom Mom
    percent dad Dad
    
*if met_taylor = true
      *stat_chart
        percent taylor Taylor
    
*if met_ryu = true
      *stat_chart
        percent ryu Ryu

The indents for the stats look like they might be inconsistent - could you try making sure that there are only tabs or spaces, and only the same number of whatever you’re using? With the below example, I’ve used tabs:

*if mc_visit = true
	*stat_chart
		percent mom Mom
		percent dad Dad
    
*if met_taylor = true
	*stat_chart
		percent taylor Taylor
    
*if met_ryu = true
	*stat_chart
		percent ryu Ryu

Have you run QuickTest? If not it will also help highlight issues.

2 Likes

It worked! Thank you so much. :heart:

1 Like

This topic was automatically closed 24 hours after the last reply. If you want to reopen your WiP, contact the moderators.