So… I’m probably over-complicating things a lot more than I need to, but I would be REALLY happy if someone could give me a solution to this problem.
Basically, I’m adding certain features about the character’s appearance, like for instance, hair colour. And I want the colour of the hair to be capitalized.
Choice would look something like this:
What is your hair colour?
*choice
#Black
*set Hair "black"
#Brown
*set Hair "brown"
#Blonde
*set Hair "blonde"
Now, when this shows upon the stats screen, I want it to show as:
Hair: Blonde
instead of:
Hair: blonde
I do know how to do this in game. Just put:
Hair: $!{Hair}
But on the stats page, I’m using the traditional:
text Hair
So, does anyone know if there is anyway to change the “text Hair” to make the hair colour show up with a capital letter?
To clarify, I do know that I could just code the word to begin with a capital letter, ie:
*set Hair "Blonde"
But I would prefer not to do this, as I’ll be mentioning hair colour in the game, and I don’t want it to appear as capitalized when I do.
Also, yes, I could always just change the stats screen, so the stats would be written as,
“Hair: $!{Hair}” instead of “text Hair”, but I’d rather not do this because I prefer the layout the other way.