NameError: name 'K_Gag' is not defin
Why do I get this error?
Can you help me fix it?
I had the same error with an old save. It did not happen to me anymore when I started a new game.
I don't know anything about Ren Py in particular, but I do know a little about interpretive text programming languages. What I suspect happened here is that K_Gag (gagging counter for Kitty?) is a variable new to the latest version. The error occurs because while a new game will define all variables, loading an object out of a save file only defines the old variables. Like if a GOTY edition of a game comes out, your old standard edition doesn't suddenly have all the new content.
However, this might be fixable. If you have the console available, you might try typing
$K_Gag=0 at the prompt. This should define the variable and set the initial value. As I said, I don't know Ren Py, so I can't promise this will work. And if it does work at first, it may still not get saved to file.