I had the same problem before! I'm not the creator and i am sorry for answering so late but here's what I found:
For stats: Make sure to put the stat you want (I will use "introverted" and "extroverted" for this example) in the Storyinit passage first, so for example:
<<set $introvert to 50>> <<set $extrovert to 50>>
- Then, if you have your stats page ready, you put in the stat bar:
<div class="stat-bar-group">
<div class="stat-bar-container">
<div class="stat-bar-overlay-left">Introvert $introvert%</div>
<div class="stat-bar-overlay-right">Extrovert $extrovert%</div>
<div class="stat-bar" id="stat"></div>
</div></div>
- Now, when the character gains points for the stat you can add something like this in the passage your writing your story in:
<<set $introvert to 55>><<set $extrovert to 45>>