Lucid
1
This isn’t a big deal, but as a perfectionist, it kind of bugs me.
Sample Code:
Personality
*stat_chart
percent nice
Combat
*stat_chart
percent accurate
I see that it begins the bar at the end of the word. Is there a way to align the start of these graphs so it looks pretty?
You need to keep them in the same *stat_chart to do so. One way is to create a couple of dummy variables to display personality/combat.
For example:
*set dummy_personality "Personality"
*set dummy_combat "Combat"
*stat_chart
text dummy_personality -
percent Nice
text dummy_combat -
percent Accurate
There are a bunch of different ways you can go about displaying the dummy variables. I’d recommend experimenting to see what look you like the most.
Lucid
3
Perfect! Thanks, you rock!
Here’s what I did:
*temp colon
*set colon “:”
*stat_chart
text colon Personality
percent nice
text colon Combat
percent accurate
Works like a charm!