Problems *stats_chart

Alright, so I was playing around in Choicescript and have come across a couple issues that need to be addressed. This is what a snippet of my stats chart looks like:

*label stat_chart
*comment basics
Name: $(full_name)
*line_break
Employer: $(employer_name)
*line_break
Gender: $(gender)
*line_break
Race: $(race)
*line_break
Natural talent: $(natural_talent)

The problem here is, that instead of displaying the name “John Doe” as I set it in the startup, it displays Name: $(full_name). It’s the same for the other stats.

Another issue is that certain parts of my stat chart won’t display.

*stat_chart
        text Agility
        text Resiliance
        text Astuteness
        text Coordination
        text Leadership
        text Strength
        text Intimidation
        text Ranged Ability
        text Melee Ability
*stat_chart
          opposed_pair Honest
                  Idealistic
          opposed_pair Compassionate
                  Ruthless
          opposed_pair Primal Instincts
                  Sophistication
          opposed_pair Charming    
                  Stoic
          opposed_pair Vagabond    
                  Vigilant
          opposed_pair Humble
                  Showy

But, it won’t actually display it on the stats screen. If anybody could help me with this, I’d be thrilled.

1 Like

For the second part, it looks like you’re missing the variable stat I think

It should look something like

*stat_chart
 text agility Agility

At least that’s how I do my stats. Text is the format, agility is the variable and Agility is how you want the stat to appear like.

1 Like

Ah, I see. I was using COV’s stat-chart as a reference, so that might have tripped me up. Thanks for the help!

1 Like

You need { brackets, not (

${full_name}

1 Like

That would explain why it wasn’t displaying correctly. Thanks!

1 Like