Hello dev,
I have opened the game with twine to checkout the corruption and beauty errors that show up
(Corruption error: Instead of being added up it just add 1s to the end of the 0 that is being initialized.
Beauty error: Instead of showing beauty score it shows the variable $beauty)
To fix Corruption error, from what I found you have to change the radiohead initialization from "Stats"
Code:
state radiohead "$corruption" "0"
to
Code:
radiohead "$corruption" 0
. The second value seems to initialize the corruption variable as a string and thus the showing of the error. I just tested it and it seems to be working correctly.
To fix the beauty error, I just initialized it on "Create the Character" state on this point:
Code:
pretty young girl with healthy skin and good body<<set $beauty = 0>>.
I'm not sure if this is the truly correct way to fix them, but they seem to work on me. No disrespect, you've done a great job. I just wanted to help out and since I found them (and I'm a fellow developer myself) wanted to help solving them!
Thank you.