Zoey Raven I had a problem where the game did not allow me to change the textbox transparency, and it stayed 100% transparent no matter where I placed the slider in the options. I experimented a bit and I believe I found a solution.
Especially, the problem seems to stem from "game\scripts\variables.rpy".
I found out that changing the start of the script to the following, works correctly on a new install (no previous persistent savefile):
Code:
#Variables
init -1:
if persistent.transparent_text_box == None:
$persistent.transparent_text_box = False
However, if a persistent savefile already exists, the above change won't work, but then this does:
Code:
#Variables
init -1:
$persistent.transparent_text_box = False
I don't know if this is the best way to resolve the issue, but it certainly worked for me.
Hope this helps.