Noob question about strings/quotes

Ok, so this is a noob question but its one that has been a pain in my side and I haven’t been able to find an answer, so I’m guessing this is a stupid question that I just cant figure out. When I try to put some flavor text inside of my stats screen, it says the string is invalid and that ‘open quote with no close quote’

I guess its easier to understand if I post the code here,

The error I’m getting is

{
Line 15: Invalid string, open quote with no close quote: "your
}

code is here
///////////////////////////////////////////////

Information
*stat_chart
text Title

Appearance
*stat_chart
text “your appearance is”

*if (Skin = “Scaled”)
*stat_chart
text “You have scaled skin”
*if (Skin = “Fur”)
*stat_chart
text “You have fur”
text “Your fur is colored ${Fur_color}”

*stat_chart
text claws

Stats
*stat_chart
text Strength
text Durability
text Speed
text Power
text Intelligence

Disposition
*stat_chart
opposed_pair Compassion
Cruelty
\\\\\\\\\\\\\\\\\\\\\\\\

Can someone more experienced let me know what I am doing wrong?

NOTE: I found a bit of a fix by putting the quotes in parenthesis, but it prints out as

“You have furry skin”: You have furry skin
“Your fur is colored green.”: Your fur is colored green.

Any way to get it to print out without it duplicating?

1 Like

You don’t have to put *stat_chart since you are not displaying the variables. You can put in the file:

[b]Appearance[/b]
Your appearance is

*if (Skin="Scaled")
    You have scaled skin.
*if (Skin="Fur")
    You have fur. Your fur is colored ${fur_color}.
1 Like

… Im stupid, thanks