Melmoth99

Active Member
Oct 1, 2017
604
250
Even with the 7.1 HotFix the gets an Error on the Bus after Evangeline leaves your house

Code:
I'm sorry, but an uncaught exception occurred.

While running game code:
  File "game/script.rpy", line 562, in script
    if evan_discomfort >= 50:
  File "game/script.rpy", line 562, in <module>
    if evan_discomfort >= 50:
NameError: name 'evan_discomfort' is not defined

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

Full traceback:
  File "game/script.rpy", line 562, in script
    if evan_discomfort >= 50:
  File "F:\DownloadGames\B&L-0.7.1-pc\renpy\ast.py", line 1832, in execute
    if renpy.python.py_eval(condition):
  File "F:\DownloadGames\B&L-0.7.1-pc\renpy\python.py", line 2059, in py_eval
    return py_eval_bytecode(code, globals, locals)
  File "F:\DownloadGames\B&L-0.7.1-pc\renpy\python.py", line 2052, in py_eval_bytecode
    return eval(bytecode, globals, locals)
  File "game/script.rpy", line 562, in <module>
    if evan_discomfort >= 50:
NameError: name 'evan_discomfort' is not defined

Windows-8-6.2.9200
Ren'Py 7.3.5.606
Broken & Loved 0.7.1
Thu Nov 18 09:27:49 2021
 
  • Thinking Face
Reactions: masterdragonson

Studio 781

Member
Game Developer
Aug 3, 2020
343
1,700
Even with the 7.1 HotFix the gets an Error on the Bus after Evangeline leaves your house

Code:
I'm sorry, but an uncaught exception occurred.

While running game code:
  File "game/script.rpy", line 562, in script
    if evan_discomfort >= 50:
  File "game/script.rpy", line 562, in <module>
    if evan_discomfort >= 50:
NameError: name 'evan_discomfort' is not defined

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

Full traceback:
  File "game/script.rpy", line 562, in script
    if evan_discomfort >= 50:
  File "F:\DownloadGames\B&L-0.7.1-pc\renpy\ast.py", line 1832, in execute
    if renpy.python.py_eval(condition):
  File "F:\DownloadGames\B&L-0.7.1-pc\renpy\python.py", line 2059, in py_eval
    return py_eval_bytecode(code, globals, locals)
  File "F:\DownloadGames\B&L-0.7.1-pc\renpy\python.py", line 2052, in py_eval_bytecode
    return eval(bytecode, globals, locals)
  File "game/script.rpy", line 562, in <module>
    if evan_discomfort >= 50:
NameError: name 'evan_discomfort' is not defined

Windows-8-6.2.9200
Ren'Py 7.3.5.606
Broken & Loved 0.7.1
Thu Nov 18 09:27:49 2021
Its an old playthrough or a new one?
As the error says, "evan_discomfort" is not define in your save game but that variable gets define when you start the game and pass the prologue. Can you check that out with a new playthrough?, I mean, if is the case.

Ps: This is becoming a costant error on the game, I'm gonna try a new method to see if I can add variables without new playthroughs.
 

masterdragonson

Engaged Member
Jan 30, 2018
3,280
4,657
Even with the 7.1 HotFix the gets an Error on the Bus after Evangeline leaves your house

Code:
I'm sorry, but an uncaught exception occurred.

While running game code:
  File "game/script.rpy", line 562, in script
    if evan_discomfort >= 50:
  File "game/script.rpy", line 562, in <module>
    if evan_discomfort >= 50:
NameError: name 'evan_discomfort' is not defined

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

Full traceback:
  File "game/script.rpy", line 562, in script
    if evan_discomfort >= 50:
  File "F:\DownloadGames\B&L-0.7.1-pc\renpy\ast.py", line 1832, in execute
    if renpy.python.py_eval(condition):
  File "F:\DownloadGames\B&L-0.7.1-pc\renpy\python.py", line 2059, in py_eval
    return py_eval_bytecode(code, globals, locals)
  File "F:\DownloadGames\B&L-0.7.1-pc\renpy\python.py", line 2052, in py_eval_bytecode
    return eval(bytecode, globals, locals)
  File "game/script.rpy", line 562, in <module>
    if evan_discomfort >= 50:
NameError: name 'evan_discomfort' is not defined

Windows-8-6.2.9200
Ren'Py 7.3.5.606
Broken & Loved 0.7.1
Thu Nov 18 09:27:49 2021
Defaulting the variables would help.

Python:
default evan_discomfort = 0
 

Studio 781

Member
Game Developer
Aug 3, 2020
343
1,700
Defaulting the variables would help.

Python:
default evan_discomfort = 0
Thank you so much, I was thinking about doing something similar but with "define", I'm gonna try this and used it to also define all the variables from the sex scene also in the same place~ <3

Ps: Yes, I'm an idiot, I read the entire Renpy documentation and this is one of things that a think "I probably would never use that".
 
Last edited:
  • Like
Reactions: masterdragonson

Studio 781

Member
Game Developer
Aug 3, 2020
343
1,700
Hot-fix v4 added, I just default all the variables to make old saves work (Thanks again masterdragonson).

Even with the 7.1 HotFix the gets an Error on the Bus after Evangeline leaves your house

Code:
I'm sorry, but an uncaught exception occurred.

While running game code:
  File "game/script.rpy", line 562, in script
    if evan_discomfort >= 50:
  File "game/script.rpy", line 562, in <module>
    if evan_discomfort >= 50:
NameError: name 'evan_discomfort' is not defined

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

Full traceback:
  File "game/script.rpy", line 562, in script
    if evan_discomfort >= 50:
  File "F:\DownloadGames\B&L-0.7.1-pc\renpy\ast.py", line 1832, in execute
    if renpy.python.py_eval(condition):
  File "F:\DownloadGames\B&L-0.7.1-pc\renpy\python.py", line 2059, in py_eval
    return py_eval_bytecode(code, globals, locals)
  File "F:\DownloadGames\B&L-0.7.1-pc\renpy\python.py", line 2052, in py_eval_bytecode
    return eval(bytecode, globals, locals)
  File "game/script.rpy", line 562, in <module>
    if evan_discomfort >= 50:
NameError: name 'evan_discomfort' is not defined

Windows-8-6.2.9200
Ren'Py 7.3.5.606
Broken & Loved 0.7.1
Thu Nov 18 09:27:49 2021
It should work now.
 

Studio 781

Member
Game Developer
Aug 3, 2020
343
1,700
Hello hello, I was playing (the spanish version) and the game closes itself every time I reach the first friday :cry:
No error or something like that?, new game or old game?
Can you please check the exact dialogue that appear before it close, I run the game and didn't close to me. Actually, this is a similar error that I fix some days ago, Idk if is still present in some other way.
 
Mar 25, 2021
35
20
No error or something like that?, new game or old game?
Can you please check the exact dialogue that appear before it close, I run the game and didn't close to me. Actually, this is a similar error that I fix some days ago, Idk if is still present in some other way.
It was a new game and the bug happens during this dialogue "Después de terminar las clases, sales de tu aula platicando con algunos de tus compañeros" then the game sent me to the menu
 

Studio 781

Member
Game Developer
Aug 3, 2020
343
1,700
It was a new game and the bug happens during this dialogue "Después de terminar las clases, sales de tu aula platicando con algunos de tus compañeros" then the game sent me to the menu
Fixed, tell me if it works and I don't mess something else.
Also I take the oportunity to add a life quality improvement: Now you can talk with Evangeline even if you don't meet the requirements for the next event.
 

Melmoth99

Active Member
Oct 1, 2017
604
250
Its an old playthrough or a new one?
As the error says, "evan_discomfort" is not define in your save game but that variable gets define when you start the game and pass the prologue. Can you check that out with a new playthrough?, I mean, if is the case.

Ps: This is becoming a costant error on the game, I'm gonna try a new method to see if I can add variables without new playthroughs.
It was an old saved game
 
  • Like
Reactions: Studio 781
Mar 25, 2021
35
20
Sometimes I think I'm a life's bug :KEK:
New error report:

```
I'm sorry, but an uncaught exception occurred.

While running game code:
File "game/evan_interactions.rpy", line 7, in script
if evan_phase == 3:
File "game/evan_interactions.rpy", line 7, in <module>
if evan_phase == 3:
NameError: name 'evan_phase' is not defined

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

Full traceback:
File "game/evan_interactions.rpy", line 7, in script
if evan_phase == 3:
File "D:\Nueva carpeta\B&L-0.7.1-pc\renpy\ast.py", line 1832, in execute
if renpy.python.py_eval(condition):
File "D:\Nueva carpeta\B&L-0.7.1-pc\renpy\python.py", line 2059, in py_eval
return py_eval_bytecode(code, globals, locals)
File "D:\Nueva carpeta\B&L-0.7.1-pc\renpy\python.py", line 2052, in py_eval_bytecode
return eval(bytecode, globals, locals)
File "game/evan_interactions.rpy", line 7, in <module>
if evan_phase == 3:
NameError: name 'evan_phase' is not defined

Windows-8-6.2.9200
Ren'Py 7.3.5.606
Broken & Loved 0.7.1
Thu Nov 18 22:00:22 2021
```
 

Studio 781

Member
Game Developer
Aug 3, 2020
343
1,700
Sometimes I think I'm a life's bug :KEK:
New error report:

```
I'm sorry, but an uncaught exception occurred.

While running game code:
File "game/evan_interactions.rpy", line 7, in script
if evan_phase == 3:
File "game/evan_interactions.rpy", line 7, in <module>
if evan_phase == 3:
NameError: name 'evan_phase' is not defined

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

Full traceback:
File "game/evan_interactions.rpy", line 7, in script
if evan_phase == 3:
File "D:\Nueva carpeta\B&L-0.7.1-pc\renpy\ast.py", line 1832, in execute
if renpy.python.py_eval(condition):
File "D:\Nueva carpeta\B&L-0.7.1-pc\renpy\python.py", line 2059, in py_eval
return py_eval_bytecode(code, globals, locals)
File "D:\Nueva carpeta\B&L-0.7.1-pc\renpy\python.py", line 2052, in py_eval_bytecode
return eval(bytecode, globals, locals)
File "game/evan_interactions.rpy", line 7, in <module>
if evan_phase == 3:
NameError: name 'evan_phase' is not defined

Windows-8-6.2.9200
Ren'Py 7.3.5.606
Broken & Loved 0.7.1
Thu Nov 18 22:00:22 2021
```
Maldita sea, I forget that one variable.

Put these two files in the "game" folder while I update the hotfix.

Edit: fixed and added to Hotfix
 
Last edited:
  • Red Heart
Reactions: Mr. High Hentai
Mar 25, 2021
35
20
The crypt's bug is gone now but there is other problem, I cant go further from the discussion with Evan's classmate, the dialogues choices didnt change and the event is repeating
 

Studio 781

Member
Game Developer
Aug 3, 2020
343
1,700
The crypt's bug is gone now but there is other problem, I cant go further from the discussion with Evan's classmate, the dialogues choices didnt change and the event is repeating
Fixed in Hotfix 0.6, now avalible...

Everyone, I hope that all this hotfix micro-patching is not annoying... I'm trying to do it as quick as possible and I catch a cold few days ago, Mexico right now is really freezing and I sleep randomly during the day.
 
Mar 25, 2021
35
20
Fixed in Hotfix 0.6, now avalible...

Everyone, I hope that all this hotfix micro-patching is not annoying... I'm trying to do it as quick as possible and I catch a cold few days ago, Mexico right now is really freezing and I sleep randomly during the day.
It's not annoying, actually, thank you very much for you work :love:
 
  • Red Heart
Reactions: Studio 781

girdeyordo

Member
Oct 6, 2020
355
539
Fixed in Hotfix 0.6, now avalible...
pukpang-pesky-bug.gif
Keep up the good work! Squashing bugs might be a pain but we all appreciate it.

Don't be like Bethesda :sneaky:
bethesda-will-patch-this-bug-soon-im-sure-of-it.jpg

Everyone, I hope that all this hotfix micro-patching is not annoying... I'm trying to do it as quick as possible and I catch a cold few days ago, Mexico right now is really freezing and I sleep randomly during the day.
QU4VXyv.jpg
Take care of your health though. Relax with some hot cocoa and try to keep warm.
 
  • Red Heart
Reactions: Studio 781
4.30 star(s) 18 Votes