Hello, I’m having trouble with stats screen. Not sure how to explain but I want players to choose three apparance variables (skin color, eyes and hair etc.) and I want to show this variables under appearance title on the stats screen.
ChoiceScript parser is limited. Each operation must be its own expression, which means that they must be surrounded by paranthesis. That’s why @Ferddai’s way worked.
Another way of achieving the same result is by using string interpolation. If you’re concatenating many strings, it might be easier to read.
*set fullname "${title} ${firstname} ${lastname}"
The ${} syntax will replace the internal expression by its value at runtime.