Inserting Text into the Stat Screen

Hello,

I’m wondering if it’s possible to get a piece of text into the stat screen at a certain place. For example, I have created a variable called inner_voice_text

*create inner_voice_text "Inner voices tend to be annoying, but [i]are[/i] often useful. Consider your interactions with your inner voice carefully. Listening to it at key points [i]may[/i] prove to be very useful, however listening to it all the time might push you further towards insanity. Do you trust it, or is it going to lead you down bad paths? Only you can decide…"

Then I have gone to the Stat Screen and tried to insert that here:

*stat_chart
	percent str Strength
	percent int Intelligence
	percent dex Dexterity
	percent dra Drama
	percent per Persuasion
	percent pai Pain Threshold
	percent inn Inner Voice
	text inner_voice_text
	percent san Sanity

On the Stat Screen, the text does in fact show up, however it has “inner_voice_text:” in front of it like so:

Of course, I don’t want “inner_voice_text:” shown on the stat screen. How can I get it to show up without the “inner_voice_text:” in front of it?

You can use ${inner_voice_text} on the stat screen like so:

*stat_chart
	percent str Strength
	percent int Intelligence
	percent dex Dexterity
	percent dra Drama
	percent per Persuasion
	percent pai Pain Threshold
	percent inn Inner Voice
${inner_voice_text}
*stat_chart
	percent san Sanity
2 Likes

thank you very much!