Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

Sure, what does the error say?

```

I'm sorry, but an uncaught exception occurred.

While running game code:

  File "game/scriptD2.rpy", line 93845, in script

    if club_greeting_alex_exhausted_d2 and club_greeting_asher_exhausted_d2 and club_greeting_griffin_exhausted_d2 and club_greeting_isaiah_exhausted_d2:

  File "game/scriptD2.rpy", line 93845, in <module>

    if club_greeting_alex_exhausted_d2 and club_greeting_asher_exhausted_d2 and club_greeting_griffin_exhausted_d2 and club_greeting_isaiah_exhausted_d2:

NameError: name 'club_greeting_alex_exhausted_d2' is not defined

-- Full Traceback ------------------------------------------------------------

Full traceback:

  File "game/scriptD2.rpy", line 93845, in script

    if club_greeting_alex_exhausted_d2 and club_greeting_asher_exhausted_d2 and club_greeting_griffin_exhausted_d2 and club_greeting_isaiah_exhausted_d2:

  File "renpy/ast.py", line 1893, in execute

    if renpy.python.py_eval(condition):

  File "renpy/python.py", line 2266, in py_eval

    return py_eval_bytecode(code, globals, locals)

  File "renpy/python.py", line 2259, in py_eval_bytecode

    return eval(bytecode, globals, locals)

  File "game/scriptD2.rpy", line 93845, in <module>

    if club_greeting_alex_exhausted_d2 and club_greeting_asher_exhausted_d2 and club_greeting_griffin_exhausted_d2 and club_greeting_isaiah_exhausted_d2:

NameError: name 'club_greeting_alex_exhausted_d2' is not defined

Windows-10-10.0.22621

Ren'Py 7.4.8.1895

Freshmen Physical Education 0.2.0

Tue Aug 22 09:04:10 2023

```

Thanks for the details! This is the error mentioned under "Troubleshooting" in the dev log post. It's the game not recognizing newly added choice flags and invalidating that particular save. The only way I know to fix it is to start a new game and skip forward to the point you left off. It's a pain, but unfortunately happens since this is an in-development game. Skipping through usually only takes a minute or two, thankfully, you'll just need to click your choices again.

awesome thank you I didn’t see the troubleshooting part. Makes sense indeed, wasn’t sure if you were aware to it. Just glad it’s a simple and known thing.